add employees_can_see_billable_rates setting to organization settings

This commit is contained in:
Gregor Vostrak
2024-10-01 21:54:54 +02:00
committed by Constantin Graf
parent 51cd919db6
commit 6c7b1b3f21
3 changed files with 39 additions and 1 deletions

View File

@@ -12,6 +12,10 @@ const props = defineProps({
type: String,
default: null,
},
id: {
type: String,
default: null,
},
});
const proxyChecked = computed({
@@ -29,6 +33,7 @@ const proxyChecked = computed({
<input
v-model="proxyChecked"
type="checkbox"
:id="id"
:value="value"
class="rounded bg-input-background border-input-border text-indigo-600 shadow-sm focus:ring-indigo-500" />
</template>