Added Eldoradu Robux Price Sentry Job
Some checks failed
Push image to registry / build-image (push) Failing after 3m30s

This commit is contained in:
2025-10-23 19:01:37 +02:00
parent 593f1f816e
commit 125bd18e19
5 changed files with 189 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ const isActiveJobInfo = ref<JobInfo>({
description: "Activer le job",
value: props.job.is_active,
is_required: false,
job_info_type: { name: "checkbox" } as JobInfoType,
job_info_type: { name: "boolean" } as JobInfoType,
} as JobInfo);
async function testJob() {

View File

@@ -19,7 +19,8 @@ const jobInfoType = props.jobInfo.job_info_type.name;
<Label :for="'' + jobInfo.id" class="text">{{ jobInfo.name }}<span v-if="jobInfo.is_required" class="cursor-help" title="Requis" aria-label="Requis">*</span></Label>
<Description>{{ jobInfo.description }}</Description>
<Input v-if="['text', 'email', 'password', 'url', 'number'].includes(jobInfoType)" :type="jobInfoType" :id="'' + jobInfo.id" :name="'' + jobInfo.id" :placeholder="jobInfo.placeholder" v-model="jobInfo.value as string" :required="jobInfo.is_required" />
<VModelCheckbox v-else :id="'' + jobInfo.id" :class="''" v-model="jobInfo.value as boolean" />
<Input v-else-if="jobInfoType == 'decimal'" :type="jobInfoType" :id="'' + jobInfo.id" :name="'' + jobInfo.id" :placeholder="jobInfo.placeholder" v-model="jobInfo.value as number" step="any" :required="jobInfo.is_required" />
<VModelCheckbox v-else-if="jobInfoType == 'boolean'" :id="'' + jobInfo.id" v-model="jobInfo.value as boolean" />
</div>