Added Eldoradu Robux Price Sentry Job
Some checks failed
Push image to registry / build-image (push) Failing after 3m30s
Some checks failed
Push image to registry / build-image (push) Failing after 3m30s
This commit is contained in:
@@ -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() {
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user