Skip to content

Commit

Permalink
Fix dialogs style (#692)
Browse files Browse the repository at this point in the history
  • Loading branch information
joanagmaia authored Mar 27, 2023
1 parent b075ab6 commit 4674696
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ WORKDIR /usr/crowd/frontend
COPY package-lock.json package.json ./
RUN npm ci

COPY .browserslistrc .eslintrc.js .prettierrc babel.config.js postcss.config.js tailwind.config.js vue.config.js ./
COPY .browserslistrc .eslintrc.js babel.config.js postcss.config.js tailwind.config.js vue.config.js ./
COPY ./public ./public
COPY ./src ./src
2 changes: 1 addition & 1 deletion frontend/Dockerfile.kube
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /usr/crowd/frontend
COPY package-lock.json package.json ./
RUN npm ci

COPY .browserslistrc .eslintrc.js .prettierrc babel.config.js postcss.config.js tailwind.config.js vue.config.js ./
COPY .browserslistrc .eslintrc.js babel.config.js postcss.config.js tailwind.config.js vue.config.js ./
COPY ./public ./public
COPY ./src ./src
RUN NODE_ENV=production npx vue-cli-service build --mode production
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/shared/dialog/confirm-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@ export default ({
message: content,
showClose: true,
showCancelButton,
overrideCustomClass,
customClass: overrideCustomClass,
confirmButtonText,
overrideConfirmButtonClass,
confirmButtonClass: overrideConfirmButtonClass,
cancelButtonText,
overrideCancelButtonClass,
cancelButtonClass: overrideCancelButtonClass,
});
}

Expand Down

0 comments on commit 4674696

Please sign in to comment.