Convert remaining simple quotes to double quotes

This commit is contained in:
Simon Ser 2022-02-26 09:54:31 +01:00
parent e37d5f363b
commit 3dc98ec797
3 changed files with 4 additions and 4 deletions

View file

@ -60,11 +60,11 @@ function isProduction() {
function parseQueryString() {
let query = window.location.search.substring(1);
let params = {};
query.split('&').forEach((s) => {
query.split("&").forEach((s) => {
if (!s) {
return;
}
let pair = s.split('=');
let pair = s.split("=");
params[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1] || "");
});
return params;

View file

@ -167,7 +167,7 @@ export default class Composer extends Component {
return;
}
let text = event.clipboardData.getData('text');
let text = event.clipboardData.getData("text");
event.preventDefault();
event.stopImmediatePropagation();

View file

@ -138,7 +138,7 @@ export default class ConnectForm extends Component {
name="autojoin"
checked=${this.state.autojoin}
/>
Auto-join channel${s} <strong>${channels.join(', ')}</strong>
Auto-join channel${s} <strong>${channels.join(", ")}</strong>
</label>
<br/><br/>
`;