Skip to content

Commit ea70d8d

Browse files
committed
#300 - added semicolons
1 parent efa5b4f commit ea70d8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/controls/fileTypeIcon/FileTypeIcon.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export class FileTypeIcon extends React.Component<IFileTypeIconProps, {}> {
132132
if (imgExists) {
133133
fallbackImg = extension;
134134
} else if (ApplicationIconList[appIdx].cdnImageName && ApplicationIconList[appIdx].cdnImageName.length > 0) {
135-
fallbackImg = ApplicationIconList[appIdx].cdnImageName[0]
135+
fallbackImg = ApplicationIconList[appIdx].cdnImageName[0];
136136
}
137137

138138
if (imgIdx !== -1) {
@@ -168,7 +168,7 @@ export class FileTypeIcon extends React.Component<IFileTypeIconProps, {}> {
168168

169169
let fallbackImg = null;
170170
if (knownApp.cdnImageName && knownApp.cdnImageName.length > 0) {
171-
fallbackImg = knownApp.cdnImageName[0]
171+
fallbackImg = knownApp.cdnImageName[0];
172172
}
173173

174174
if (iconType === IconType.font) {

0 commit comments

Comments
 (0)