Skip to content

Commit

Permalink
Couple of tweaks after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
whomwah committed Jul 30, 2020
1 parent 936671a commit 4f4e9d4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
4 changes: 3 additions & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ EXPOSE $PORT
RUN npm install -g npm@latest

COPY package*.json ./
RUN npm ci --no-optional
RUN npm install
# node-sass does not like below!
#RUN npm ci --no-optional

COPY . .

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1463,7 +1463,7 @@ exports[`CurrentTrack render album renders track 1`] = `
<strong>
27 Jan 2020 @ 8:19 pm
</strong>
-
-
Duncan Robertson
</ListDescription>
</ListContent>
Expand Down Expand Up @@ -1592,9 +1592,9 @@ exports[`CurrentTrack render album renders track 1`] = `
<strong>
27 Jan 2020 @ 8:20 pm
</strong>
-
-
Duncan Robertson
<Label
circular={true}
size="mini"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ exports[`DashboardContainer online logged in renders as expected 1`] = `
className="c-main__trackList"
>
<h6>
Tracklist
Tracklist
<ClearPlaylist
disabled={true}
onClear={[Function]}
Expand Down Expand Up @@ -1188,7 +1188,7 @@ exports[`DashboardContainer online logged out renders as expected 1`] = `
className="c-main__trackList"
>
<h6>
Tracklist
Tracklist
<ClearPlaylist
disabled={true}
onClear={[Function]}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/dashboard/__snapshots__/index.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ exports[`Dashboard render renders the happy path correctly 1`] = `
className="c-main__trackList"
>
<h6>
Tracklist
Tracklist
<ClearPlaylist
disabled={false}
onClear={[MockFunction onTracklistClearMock]}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import ReactDOM from 'react-dom'
import './style/core.scss'
import App from './App'
import './index.css'

ReactDOM.render(<App />, document.getElementById('root'))

0 comments on commit 4f4e9d4

Please sign in to comment.