Skip to content

Commit

Permalink
fix(components): Adjust wording
Browse files Browse the repository at this point in the history
  • Loading branch information
floryst committed Jun 22, 2018
1 parent 8bbcf7c commit dae01f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/core/BrowserIssues/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ function getBrowserIssues() {
this.issues.push(
`Detected GPU "${
UNMASKED_RENDERER.value
}". Dedicated GPU would offer better performances.`
}". Dedicated GPU would offer better performance.`
);
}
if (strToTest.indexOf('angle') !== -1) {
this.issues.push(
`ANGLE is used to translate OpenGL for your hardware. (Slower rendering)`
`ANGLE is used to translate OpenGL for your hardware, so expect slower rendering.`
);
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/core/BrowserIssues/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<v-card-text>
<p>
We've detected several issues that may affect the performance of this
application on your browser.
application in your browser.
</p>
<ul :class="$style.list">
<li
Expand All @@ -30,4 +30,4 @@
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</v-dialog>
2 changes: 1 addition & 1 deletion src/components/core/Landing/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<v-icon>folder_open</v-icon>
</v-btn>
<div :class="$style.noSelect">
or drag it anywhere in this window to begin.
or drop one anywhere in this box to begin.
</div>
</div>
</div>
Expand Down

0 comments on commit dae01f3

Please sign in to comment.