diff --git a/TODO.txt b/TODO.txt index e49863e6caa..f0bfd9444fe 100644 --- a/TODO.txt +++ b/TODO.txt @@ -11,16 +11,13 @@ Look at: * LWCs + * Write up Layout Constants + * Review: - * Read Only Field - * Self Configured Combobox + * Self Configured Combobox - not sure it's needed * Create exception rendering / error rendering - * Make a page for LWCs - * Document: - * Modal - * Try parent and datatable referencing a DML Service * Standards diff --git a/framework/default/ortoo-core/default/lwc/readOnlyField/readOnlyField.js b/framework/default/ortoo-core/default/lwc/readOnlyField/readOnlyField.js index 82882bfa297..3c43c524d94 100644 --- a/framework/default/ortoo-core/default/lwc/readOnlyField/readOnlyField.js +++ b/framework/default/ortoo-core/default/lwc/readOnlyField/readOnlyField.js @@ -8,7 +8,7 @@ export default class ReadOnlyField extends LightningElement { @api label; @api value; @api fieldLevelHelp; - @api displayDensity = LAYOUT_CONSTANTS.DISPLAY_DENSITY.DEFAULT; // wonder if this should be on a OrtooLightningElement superclass? + @api displayDensity = LAYOUT_CONSTANTS.DISPLAY_DENSITY.DEFAULT; get labelClasses() { return LAYOUT_CONSTANTS.getLabelClasses( this.displayDensity );