diff --git a/.env.production b/.env.production index 50bbd8a..3af203a 100755 --- a/.env.production +++ b/.env.production @@ -1,4 +1,6 @@ VITE_BASE_URL=https://api.domain.com/v1/ VITE_BASE_DIRECTORY=/ VITE_APP_VERSION=0.0.1 -VITE_APP_NAME='Executive Information System' \ No newline at end of file +VITE_APP_NAME='Executive Information System' +VITE_APP_GRAPHQL_ENDPOINT=http://10.1.50.173:32180/graphql +VITE_APP_REST_ENDPOINT=http://10.1.50.173:32181 \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 32ff3f3..9d8c259 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:lts-alpine as build-stage WORKDIR /app -COPY package*.json ./ -RUN npm install +# COPY package*.json ./ +# RUN npm install COPY . . RUN npm run build @@ -10,4 +10,10 @@ FROM nginx:stable-alpine as production-stage COPY --from=build-stage /app/dist /usr/share/nginx/html COPY --from=build-stage /app/nginx.conf /etc/nginx/nginx.conf EXPOSE 32166 -CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file +CMD ["nginx", "-g", "daemon off;"] + +# FROM nginx:stable-alpine +# COPY /dist /usr/share/nginx/html +# COPY /nginx.conf /etc/nginx/nginx.conf +# EXPOSE 32166 +# CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/src/assets/css/style.css b/src/assets/css/style.css index 87f6ecf..3bc3746 100755 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -1253,6 +1253,10 @@ body { margin-top: -1px; } +.mb-0 { + margin-bottom: 0px; +} + .mb-1 { margin-bottom: 0.25rem; } diff --git a/src/components/Form/FiltersType/Type2.vue b/src/components/Form/FiltersType/Type2.vue index 019c7be..6b98562 100755 --- a/src/components/Form/FiltersType/Type2.vue +++ b/src/components/Form/FiltersType/Type2.vue @@ -96,39 +96,31 @@ onMounted(() => {