Skip to content

Commit

Permalink
界面设施显示名称修复
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhaoZuohong committed Sep 26, 2023
1 parent deadcba commit 1ba6ece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/stores/plan.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const usePlanStore = defineStore('plan', () => {
for (let i = 1; i <= 3; ++i) {
for (let j = 1; j <= 3; ++j) {
const facility_name = `room_${i}_${j}`
const display_name = `B${i}0${i}`
const display_name = `B${i}0${j}`
facility_operator_limit[facility_name] = 3
left_side_facility.push({ label: display_name, value: facility_name })
}
Expand Down

0 comments on commit 1ba6ece

Please sign in to comment.