Skip to content

Commit

Permalink
quick bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
khaxis committed Jun 2, 2023
1 parent 04ce27f commit 8ae73f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docker/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ RUN cd /tmp && python setup.py install
ADD ./docker/backend/requirements.txt /app/requirements.txt
RUN pip install -r /app/requirements.txt
RUN rm /app/requirements.txt
RUN echo '[]' > /app/nodes.json
2 changes: 1 addition & 1 deletion ui/src/components/Graph/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ class Graph extends Component {
<ReactFlowProvider>
<div className={'BackgroundLabels ' + (this.state.editable ? 'editable' : 'readonly')}>
<div className="Title">{this.state.graph.title}</div>
<div className="sync-wheel" key={this.state.syncCounter}><div class="lds-ripple"><div></div><div></div></div></div>
<div className="sync-wheel" key={this.state.syncCounter}><div className="lds-ripple"><div></div><div></div></div></div>
</div>
{this.state.fileObj &&
<FileDialog
Expand Down

0 comments on commit 8ae73f4

Please sign in to comment.