buli
2023-07-11 80a3f59e2d3df07805bc67e329300b8de90a5b3a
force-app/main/default/lwc/customAccountUrlComp/customAccountUrlComp.html
New file
@@ -0,0 +1,10 @@
<template>
    <template if:false={isDisable}>
        <lightning-formatted-url
            value={accountUrl}
            label={accountName}
            target="_blank"
        ></lightning-formatted-url>
    </template>
    <template if:true={isDisable}> {accountName} </template>
</template>