Skip to content
This repository has been archived by the owner on May 20, 2023. It is now read-only.

Commit

Permalink
fixed indents
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiaArt committed Jul 25, 2022
1 parent 76db839 commit 9de8d75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ EXPOSE 1025
EXPOSE 9912
EXPOSE 9913

CMD composer install && ./rr serve -c .rr.yaml
CMD composer install && ./rr serve -c ${ROADRUNNER_CONFIG}
3 changes: 3 additions & 0 deletions resources/js/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ const smtp = {
if (state.events.find(e => event.uuid == e.uuid)) {
return
}

state.events.unshift(event)
},
openEvent(state, event) {
Expand Down Expand Up @@ -107,6 +108,7 @@ const sentry = {
if (state.events.find(e => event.uuid == e.uuid)) {
return
}

state.events.unshift(event)
},
openEvent(state, event) {
Expand Down Expand Up @@ -135,6 +137,7 @@ const inspector = {
if (state.events.find(e => event.uuid == e.uuid)) {
return
}

state.events.unshift(event)
},
openEvent(state, event) {
Expand Down

0 comments on commit 9de8d75

Please sign in to comment.