File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -232,12 +232,28 @@ const shouldShowField = (value: unknown) =>
232232 <template
233233 v-if =" element .type === PageEditorElementTypes .RecommendPrevious "
234234 >
235- <PageEditorInput
236- v-if =" shouldShowField(element.id)"
237- v-model =" element.id"
238- label =" ID"
239- :element
240- />
235+ <div class =" grid w-full grid-cols-2 gap-x-4 gap-y-2" >
236+ <PageEditorInput
237+ v-if =" shouldShowField(element.title)"
238+ v-model =" element.title"
239+ label =" Title"
240+ />
241+ <PageEditorInput
242+ v-if =" shouldShowField(element.serverTranslation)"
243+ v-model =" element.serverTranslation"
244+ label =" Title Server Translation"
245+ />
246+ <PageEditorInput
247+ v-if =" shouldShowField(element.subtitle)"
248+ v-model =" element.subtitle"
249+ label =" Subtitle"
250+ />
251+ <PageEditorInput
252+ v-if =" shouldShowField(element.subtitleServerTranslation)"
253+ v-model =" element.subtitleServerTranslation"
254+ label =" Subtitle Server Translation"
255+ />
256+ </div >
241257 </template >
242258 <template
243259 v-if =" element .type === PageEditorElementTypes .RecentMessages "
You can’t perform that action at this time.
0 commit comments