dev #604

Merged
ysCha merged 6 commits from dev into prd-deploy 2026-01-26 15:04:38 +09:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 31715aa621 - Show all commits

View File

@ -165,6 +165,8 @@ export const SAVE_KEY = [
'text', 'text',
'pitch', 'pitch',
'uuid', 'uuid',
'lineName',
'roofId',
'originText', 'originText',
'groupYn', 'groupYn',
'groupName', 'groupName',

View File

@ -160,7 +160,7 @@ export function useCanvas(id) {
for (let key in this) { for (let key in this) {
if (typeof this[key] !== 'function' && SAVE_KEY.includes(key)) { if (typeof this[key] !== 'function' && SAVE_KEY.includes(key)) {
source.key = this[key] source[key] = this[key]
} }
} }