Skip to content

Commit

Permalink
Merge pull request I-TECH-UW#1038 from mozzy11/develop
Browse files Browse the repository at this point in the history
minor fix
  • Loading branch information
mozzy11 authored May 8, 2024
2 parents b9dd70f + 5cf5902 commit b5a7201
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions frontend/src/components/admin/menu/DictionaryManagement.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ function DictionaryManagement() {
data-modal-primary-focus
id="dictNumber"
labelText="Dictionary Number"
disabled
onChange={(e) => setDictionaryNumber(e.target.value)}
style={{
marginBottom: "1rem",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.openelisglobal.dictionary.rest.controller;
package org.openelisglobal.dictionary.controller.rest;

import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/openelisglobal/AppTestConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"org.openelisglobal.address",
"org.openelisglobal.dictionary",
"org.openelisglobal.person",
"org.openelisglobal.dictionary.rest.controller",
"org.openelisglobal.dictionary.controller.rest",
"org.openelisglobal.dictionary.service",
"org.openelisglobal.dictionarycategory.service",
"org.openelisglobal.dictionary.daoimpl",
Expand All @@ -69,7 +69,7 @@
"org.openelisglobal.view",
}, excludeFilters = {
@ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openelisglobal.patient.controller.*"),
@ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openelisglobal.dictionary.controller.*"),
@ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openelisglobal.dictionary.controller.*.java"),
@ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openelisglobal.config.*"),
@ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openelisglobal.fhir.*"),
@ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openelisglobal.*.fhir.*")
Expand Down

0 comments on commit b5a7201

Please sign in to comment.