Skip to content

Commit 7ca6de4

Browse files
authored
prettier fix.
prettier fix.
2 parents a92f6b9 + 97a55c3 commit 7ca6de4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

designer/src/path-bar/path-bar-view.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class PathBarView {
6060
const separator = Dom.element('span', {
6161
class: 'sqd-path-bar-separator'
6262
});
63-
separator.innerText = (index === startIndex) ? '...' : '/';
63+
separator.innerText = index === startIndex ? '...' : '/';
6464
this.items.appendChild(separator);
6565
}
6666
const item = Dom.element('span', {

0 commit comments

Comments
 (0)