diff options
-rw-r--r-- | src/data/things/thing.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/data/things/thing.js b/src/data/things/thing.js index 42971c04..e1f488ee 100644 --- a/src/data/things/thing.js +++ b/src/data/things/thing.js @@ -9,10 +9,10 @@ import CacheableObject from './cacheable-object.js'; export default class Thing extends CacheableObject { static referenceType = Symbol.for('Thing.referenceType'); - static friendlyName = Symbol.for(`Thing.friendlyName`); + static friendlyName = Symbol.for('Thing.friendlyName'); - static getPropertyDescriptors = Symbol('Thing.getPropertyDescriptors'); - static getSerializeDescriptors = Symbol('Thing.getSerializeDescriptors'); + static getPropertyDescriptors = Symbol.for('Thing.getPropertyDescriptors'); + static getSerializeDescriptors = Symbol.for('Thing.getSerializeDescriptors'); static yamlDocumentSpec = Symbol.for('Thing.yamlDocumentSpec'); |