Skip to content

Commit

Permalink
feat: uncommented changelog fields [WTEL-3887]
Browse files Browse the repository at this point in the history
  • Loading branch information
dlohvinov committed Nov 14, 2023
1 parent 42b0864 commit 43694d5
Showing 1 changed file with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
required
@input="setItemProp({ prop: 'object', value: $event })"
/>
<!-- <wt-select-->
<!-- :value="itemInstance.storage"-->
<!-- :search-method="getStorageList"-->
<!-- :clearable="false"-->
<!-- :label="$t('objects.system.changelogs.storage')"-->
<!-- :disabled="disableUserInput"-->
<!-- :v="v.itemInstance.storage"-->
<!-- required-->
<!-- @input="setItemProp({ prop: 'storage', value: $event })"-->
<!-- ></wt-select>-->
<wt-select
:clearable="false"
:disabled="disableUserInput"
:label="$t('objects.system.changelogs.storage')"
:search-method="getStorageList"
:v="v.itemInstance.storage"
:value="itemInstance.storage"
required
@input="setItemProp({ prop: 'storage', value: $event })"
/>
<wt-input
:disabled="disableUserInput"
:label="$t('objects.system.changelogs.daysToStore')"
Expand All @@ -35,14 +35,14 @@
type="number"
@input="setItemProp({ prop: 'daysToStore', value: +$event })"
/>
<!-- <wt-select-->
<!-- :value="currentPeriod"-->
<!-- :options="periodOptions"-->
<!-- :label="$t('objects.system.changelogs.period.period')"-->
<!-- :disabled="disableUserInput"-->
<!-- :clearable="false"-->
<!-- @input="this.setItemProp({ prop: 'period', value: $event.id })"-->
<!-- ></wt-select>-->
<wt-select
:clearable="false"
:disabled="disableUserInput"
:label="$t('objects.system.changelogs.period.period')"
:options="periodOptions"
:value="currentPeriod"
@input="setItemProp({ prop: 'period', value: $event.id })"
/>
<wt-textarea
:disabled="disableUserInput"
:label="$t('objects.description')"
Expand Down

0 comments on commit 43694d5

Please sign in to comment.