change format option

yhy
Dawn1Ocean 2024-03-12 21:50:23 +08:00
parent 5bafff52ad
commit e11a58dbb5
3 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@
"semi": true, "semi": true,
"singleQuote": true, "singleQuote": true,
"proseWrap": "preserve", "proseWrap": "preserve",
"arrowParens": "avoid", "arrowParens": "always",
"bracketSpacing": true, "bracketSpacing": true,
"jsxSingleQuote": true, "jsxSingleQuote": true,
"endOfLine": "auto" "endOfLine": "auto"

View File

@ -176,9 +176,9 @@ export default class RepairPage extends Component<{}, RepairPageState> {
clear clear
required required
name='deviceModel' name='deviceModel'
title={pt.get().repairPage.deviceText.title} title={pt.get().repairPage.deviceModelText.title}
type='text' type='text'
placeholder={pt.get().repairPage.deviceText.placeholder} placeholder={pt.get().repairPage.deviceModelText.placeholder}
value={this.state.deviceModel} value={this.state.deviceModel}
onChange={this.handleDeviceModelChange.bind(this)} onChange={this.handleDeviceModelChange.bind(this)}
/> />

View File

@ -37,10 +37,10 @@ export const ticketDetailZhCn: TicketDetailText = {
export const ticketDetailEnUs: TicketDetailText = { export const ticketDetailEnUs: TicketDetailText = {
stepItems: [ stepItems: [
{ title: 'Ticket created' }, { title: 'Created' },
{ title: 'Repairing' }, { title: 'Repairing' },
{ title: 'Take home' },
{ title: 'Finished' }, { title: 'Finished' },
{ title: 'Retrived' },
], ],
createTicketMessage: 'Created ticket', createTicketMessage: 'Created ticket',
statusModifyPrefix: 'Modified repair status to: ', statusModifyPrefix: 'Modified repair status to: ',