Skip to content

Commit

Permalink
- Adds readonly required threshold field to exception
Browse files Browse the repository at this point in the history
threshold form
- Adds required threshold form field to write to the exception
database table
- Updates docker-compose to docker compose in Makefile
for local development
  • Loading branch information
sophia-massie committed Sep 6, 2024
1 parent 97f9a0a commit 9c6c88a
Show file tree
Hide file tree
Showing 4 changed files with 194 additions and 190 deletions.
8 changes: 4 additions & 4 deletions apcd-cms/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ DOCKER_IMAGE_BRANCH := $(DOCKERHUB_REPO):$(shell git describe --exact-match --ta

#.PHONY: build
build:
docker-compose -f docker-compose.dev.yml build
docker compose -f docker-compose.dev.yml build

.PHONY: build-full
build-full:
Expand All @@ -27,12 +27,12 @@ publish-latest:

.PHONY: start
start:
docker-compose -f docker-compose.dev.yml up
docker compose -f docker-compose.dev.yml up

.PHONY: stop
stop:
docker-compose -f docker-compose.dev.yml down
docker compose -f docker-compose.dev.yml down

.PHONY: stop-full
stop-v:
docker-compose -f docker-compose.dev.yml down -v
docker compose -f docker-compose.dev.yml down -v
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@ input[id^="threshold-requested"]::-webkit-outer-spin-button
-moz-appearance:textfield;
}

[id^="required_threshold"] {
background-color: #e9ecef;
color: #6c757d;
border-color: #ced4da;
cursor: not-allowed;
}

/* Field Sizes */
[id^="threshold-requested"], [id^="expiration-date"] {
[id^="threshold-requested"], [id^="expiration-date"], [id^="required_threshold"] {
min-width: 15ch;
}
/* To make sure sup values are not cut off when set as a label*/
Expand Down
Loading

0 comments on commit 9c6c88a

Please sign in to comment.