Browse Source

fix: Use Kebab-Case, and resolve Merge Conflict

pull/219/head
Jannik Volkland 5 years ago
parent
commit
813884ef21
  1. 2
      webroot/js/app.js
  2. 6
      webroot/js/components/social-icons-list.js

2
webroot/js/app.js

@ -3,7 +3,7 @@ import htm from 'https://unpkg.com/htm?module'; @@ -3,7 +3,7 @@ import htm from 'https://unpkg.com/htm?module';
const html = htm.bind(h);
import { OwncastPlayer } from './components/player.js';
import SocialIconsList from './components/socialIconsList.js';
import SocialIconsList from './components/social-icons-list.js';
import UsernameForm from './components/chat/username.js';
import Chat from './components/chat/chat.js';
import Websocket from './utils/websocket.js';

6
webroot/js/components/socialIconsList.js → webroot/js/components/social-icons-list.js

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
import { h, Component } from 'https://unpkg.com/preact?module';
import htm from 'https://unpkg.com/htm?module';
import { h, Component } from '/js/web_modules/preact.js';
import htm from '/js/web_modules/htm.js';
const html = htm.bind(h);
import { SOCIAL_PLATFORMS } from '../utils/social.js';
@ -60,4 +60,4 @@ export default function (props) { @@ -60,4 +60,4 @@ export default function (props) {
<span class="follow-label text-xs font-bold mr-2 uppercase">Follow me:</span>
${list}
</ul>`;
}
}
Loading…
Cancel
Save