fix: use directory path instead of glob for oxfmt

This commit is contained in:
Alexander Brown
2026-01-19 16:33:16 -08:00
parent e7ce294aeb
commit 261fb1b34d
33 changed files with 267 additions and 168 deletions

View File

@@ -12,9 +12,9 @@
:class="{
'pi pi-spin pi-spinner text-neutral-400':
validationState === ValidationState.LOADING,
'pi pi-check text-green-500 cursor-pointer':
'pi pi-check cursor-pointer text-green-500':
validationState === ValidationState.VALID,
'pi pi-times text-red-500 cursor-pointer':
'pi pi-times cursor-pointer text-red-500':
validationState === ValidationState.INVALID
}"
@click="validateUrl(props.modelValue)"