bfg-common 1.2.55 → 1.2.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -166,20 +166,13 @@ const localization = computed<UI_I_Localization>(() => useLocal())
|
|
|
166
166
|
// const drawingPanel = computed(() => drawingPanelFunc(localization.value))
|
|
167
167
|
|
|
168
168
|
const descriptionTextPlaceholder = computed<string>(() => {
|
|
169
|
-
if (props.selectedTab ===
|
|
170
|
-
if (props.selectedTab ===
|
|
169
|
+
if (props.selectedTab === 0) return localization.value.whatIsTheProblemHowCan
|
|
170
|
+
if (props.selectedTab === 1) return localization.value.tellUsWhatYouEnjoyedSo
|
|
171
171
|
return localization.value.selectFeedbackType
|
|
172
172
|
})
|
|
173
173
|
const hasTakeScreenshot = ref<boolean>(false)
|
|
174
174
|
const feedbackImgWrap = ref()
|
|
175
175
|
const feedbackImg = ref()
|
|
176
|
-
watch(
|
|
177
|
-
feedbackImg,
|
|
178
|
-
(newValue) => {
|
|
179
|
-
console.log(newValue, 222)
|
|
180
|
-
},
|
|
181
|
-
{ deep: true }
|
|
182
|
-
)
|
|
183
176
|
const isFileLoad = ref(null)
|
|
184
177
|
const memoryParentMain = ref<string>('')
|
|
185
178
|
const memoryParentModalDialog = ref<string>('')
|