Skip to content

Commit 7d88c7b

Browse files
committed
Merge pull request #4179 from mtraynham/bug_4113
Fix ttf path by removing '?'. Resolves webpack issue.
2 parents 17d816c + 2d57abe commit 7d88c7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/less/icons.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
src: url('@{font-path}ui-grid.eot');
44
src: url('@{font-path}ui-grid.eot#iefix') format('embedded-opentype'),
55
url('@{font-path}ui-grid.woff') format('woff'),
6-
url('@{font-path}ui-grid.ttf?') format('truetype'),
6+
url('@{font-path}ui-grid.ttf') format('truetype'),
77
url('@{font-path}ui-grid.svg?#ui-grid') format('svg');
88
font-weight: normal;
99
font-style: normal;
@@ -53,4 +53,4 @@
5353
.ui-grid-icon-blank::before {
5454
width: 1em;
5555
content: ' ';
56-
}
56+
}

0 commit comments

Comments
 (0)