소스 검색

remove bool

Darragh Burke 5 년 전
부모
커밋
fd917e7b56
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      inspector/src/components/actionTabs/tabs/propertyGrids/materials/textures/bottomBar.tsx

+ 1 - 1
inspector/src/components/actionTabs/tabs/propertyGrids/materials/textures/bottomBar.tsx

@@ -9,7 +9,7 @@ interface BottomBarProps {
 export class BottomBar extends React.Component<BottomBarProps> {
     render() {
         return <div id='bottom-bar'>
-            <span id='file-url'>{this.props.name} {this.props.hasMips ? "true" : "false"}</span>
+            <span id='file-url'>{this.props.name}</span>
             {this.props.hasMips && <span id='mip-level'>MIP Preview: {this.props.mipLevel}</span>}
         </div>;
     }