Skip to content

Commit

Permalink
#2490: downloaded to vue 3.3.4 to avoid this bug bootstrap-vue/bootst…
Browse files Browse the repository at this point in the history
  • Loading branch information
EVOFORGE\dimay committed Jan 3, 2024
1 parent df5cce2 commit 7939d6b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"@vee-validate/i18n": "4.12.4",
"@vee-validate/rules": "4.12.4",
"@vue-a11y/announcer": "2.1.0",
"@vue/compat": "3.3.13",
"@vue/compiler-sfc": "^3.3.13",
"@vue/compat": "3.3.4",
"@vue/compiler-sfc": "3.3.4",
"animate.css": "4.1.1",
"apexcharts": "3.45.1",
"axios": "1.6.2",
Expand All @@ -54,7 +54,7 @@
"video.js": "8.6.1",
"vis-data": "7.1.9",
"vis-network": "9.1.9",
"vue": "3.3.13",
"vue": "3.3.4",
"vue-apexcharts": "1.6.2",
"vue-radial-progress": "0.3.2",
"vue-router": "4.2.5",
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/components/access/RoleManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ limitations under the License.
:options="userRole.options"
aria-label="Please select user's Role"
data-cy="userRoleSelector">
<template #first>
<template v-slot:first>
<b-form-select-option :value="null" disabled>-- Please select user's Role --</b-form-select-option>
</template>
</b-form-select>
Expand Down
6 changes: 3 additions & 3 deletions dashboard/src/components/badges/EditBadge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ limitations under the License.
<!-- <ValidationProvider rules="optionalNumeric|required|min_value:0|daysMaxTimeLimit:@timeLimitHours,@timeLimitMinutes|cantBe0IfHours0Minutes0" vid="timeLimitDays" v-slot="{errors}" name="Days">-->
<div class="input-group">
<input class="form-control d-inline" type="text" v-model="badgeInternal.expirationDays"
value="8" :disabled="!badgeInternal.timeLimitEnabled"
:disabled="!badgeInternal.timeLimitEnabled"
:aria-required="badgeInternal.timeLimitEnabled"
ref="timeLimitDays" data-cy="timeLimitDays"
v-on:keydown.enter="handleSubmit(updateBadge)"
Expand All @@ -122,7 +122,7 @@ limitations under the License.
<!-- <ValidationProvider rules="optionalNumeric|required|min_value:0|max_value:23|hoursMaxTimeLimit:@timeLimitDays,@timeLimitMinutes|cantBe0IfMins0Days0" vid="timeLimitHours" v-slot="{errors}" name="Hours">-->
<div class="input-group">
<input class="form-control d-inline" type="text" v-model="badgeInternal.expirationHrs"
value="8" :disabled="!badgeInternal.timeLimitEnabled"
:disabled="!badgeInternal.timeLimitEnabled"
:aria-required="badgeInternal.timeLimitEnabled"
ref="timeLimitHours" data-cy="timeLimitHours"
v-on:keydown.enter="handleSubmit(updateBadge)"
Expand All @@ -140,7 +140,7 @@ limitations under the License.
<!-- <ValidationProvider rules="optionalNumeric|required|min_value:0|max_value:59|minutesMaxTimeLimit:@timeLimitDays,@timeLimitHours|cantBe0IfHours0Days0" vid="timeLimitMinutes" v-slot="{errors}" name="Minutes">-->
<div class="input-group">
<input class="form-control d-inline" type="text" v-model="badgeInternal.expirationMins"
value="0" :disabled="!badgeInternal.timeLimitEnabled" ref="timeLimitMinutes" data-cy="timeLimitMinutes"
:disabled="!badgeInternal.timeLimitEnabled" ref="timeLimitMinutes" data-cy="timeLimitMinutes"
v-on:keydown.enter="handleSubmit(updateBadge)"
:aria-required="badgeInternal.timeLimitEnabled"
:aria-label="`time window minutes ${maxTimeLimitMessage}`"
Expand Down
4 changes: 2 additions & 2 deletions dashboard/src/components/skills/EditSkill.vue
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ limitations under the License.
<!-- <ValidationProvider rules="optionalNumeric|required|min_value:0|hoursMaxTimeWindow:@timeWindowMinutes|cantBe0IfMins0" vid="timeWindowHours" v-slot="{errors}" name="Hours">-->
<div class="input-group">
<input class="form-control d-inline" type="text" v-model="skillInternal.pointIncrementIntervalHrs"
value="8" :disabled="!skillInternal.timeWindowEnabled"
:disabled="!skillInternal.timeWindowEnabled"
:aria-required="skillInternal.timeWindowEnabled"
ref="timeWindowHours" data-cy="timeWindowHours"
v-on:keydown.enter="handleSubmit(saveSkill)"
Expand All @@ -160,7 +160,7 @@ limitations under the License.
<!-- <ValidationProvider rules="optionalNumeric|required|min_value:0|max_value:59|minutesMaxTimeWindow:@timeWindowHours|cantBe0IfHours0" vid="timeWindowMinutes" v-slot="{errors}" name="Minutes">-->
<div class="input-group">
<input class="form-control d-inline" type="text" v-model="skillInternal.pointIncrementIntervalMins"
value="0" :disabled="!skillInternal.timeWindowEnabled" ref="timeWindowMinutes" data-cy="timeWindowMinutes"
:disabled="!skillInternal.timeWindowEnabled" ref="timeWindowMinutes" data-cy="timeWindowMinutes"
v-on:keydown.enter="handleSubmit(saveSkill)"
:aria-required="skillInternal.timeWindowEnabled"
aria-label="time window minutes"
Expand Down

0 comments on commit 7939d6b

Please sign in to comment.