Skip to content

Commit f78e803

Browse files
authored
cleanup (#959)
1 parent 213109c commit f78e803

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/Cards/CreateWikiWizardStepThree.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
|| 'Please provide a response.',
3939
4040
() => value.temporality !== 'other'
41-
|| !! (!! value.otherTemporality && value.otherTemporality.length < 201)
41+
|| !! (value.otherTemporality && value.otherTemporality.length < 201)
4242
|| 'Text must be 200 characters or less.'
4343
]"
4444
></v-text-field>

src/components/Cards/CreateWikiWizardStepTwo.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
|| 'Please provide a response.',
4545
4646
() => value.purpose !== 'other'
47-
|| !! (!! value.otherPurpose && value.otherPurpose.length < 201)
47+
|| !! (value.otherPurpose && value.otherPurpose.length < 201)
4848
|| 'Text must be 200 characters or less.'
4949
]"
5050
></v-text-field>
@@ -88,7 +88,7 @@
8888
8989
() => value.purpose !== 'data_hub'
9090
|| value.audience !== 'other'
91-
|| !! (!! value.otherAudience && value.otherAudience.length < 201)
91+
|| !! (value.otherAudience && value.otherAudience.length < 201)
9292
|| 'Text must be 200 characters or less.'
9393
]"></v-text-field>
9494
</template>

0 commit comments

Comments
 (0)