Revised naming of lastModified to lastModifiedString to differentiate from Api response naming

This commit is contained in:
cptran777 2018-04-02 14:24:49 -07:00
parent dbfcb94724
commit f113c0d676
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ export default class DatasetSchemaContainer extends Component {
* Stores the last modified date on the dataset schema as an utc time string * Stores the last modified date on the dataset schema as an utc time string
* @type {string} * @type {string}
*/ */
lastModified: string; lastModifiedString: string;
/** /**
* List of schema properties for the dataset * List of schema properties for the dataset
@ -52,6 +52,6 @@ export default class DatasetSchemaContainer extends Component {
schemas = augmentObjectsWithHtmlComments(columns); schemas = augmentObjectsWithHtmlComments(columns);
json || (json = '{}'); json || (json = '{}');
setProperties(this, { schemas, json, lastModified: lastModifiedString }); setProperties(this, { schemas, json, lastModifiedString });
}); });
} }

View File

@ -1,5 +1,5 @@
{{dataset-schema {{dataset-schema
json=json json=json
schemas=schemas schemas=schemas
lastModified=lastModified lastModified=lastModifiedString
}} }}