Skip to content

Commit e168c5c

Browse files
feat: change const name
1 parent 6e2775c commit e168c5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/PropertyShapeDocument.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -761,12 +761,12 @@ export class PropertyShapeDocument extends PropertyDocumentMixin(LitElement) {
761761
}
762762
let dataType = ''
763763
for(const dataTypeValue of dataTypes){
764-
const dt = this._computeRangeDataType(dataTypeValue)
764+
const computeDataType = this._computeRangeDataType(dataTypeValue)
765765

766-
if(dataType!=='' && dataType!==dt){
766+
if(dataType!=='' && dataType!==computeDataType){
767767
return 'Any'
768768
}
769-
dataType = String(dt)
769+
dataType = String(computeDataType)
770770
}
771771
return dataType
772772
}

0 commit comments

Comments
 (0)