670948f113
- CRITICAL: Change DNS zones endpoint from GET to POST to avoid leaking API token in URL query parameters - HIGH: Add sync.RWMutex to protect dnsProvider field in Server, Deployer, and proxy Manager against concurrent read/write races - HIGH: Capture old DNS provider reference synchronously before launching background cleanup goroutine - HIGH: Use getDNS()/getDNSProviderLocked() accessors instead of direct field reads in all DNS operations
9 lines
497 B
JavaScript
9 lines
497 B
JavaScript
import { a as attr, b as attr_class, c as clsx } from "./index.js";
|
|
function IconCheck($$renderer, $$props) {
|
|
const { size = 20, class: c = "" } = $$props;
|
|
$$renderer.push(`<svg xmlns="http://www.w3.org/2000/svg"${attr("width", size)}${attr("height", size)} viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"${attr_class(clsx(c))} aria-hidden="true"><path d="M20 6 9 17l-5-5"></path></svg>`);
|
|
}
|
|
export {
|
|
IconCheck as I
|
|
};
|