Skip to content

Commit

Permalink
fix(kong): change data store types to lower case build_image
Browse files Browse the repository at this point in the history
  • Loading branch information
brucetony committed Aug 12, 2024
1 parent 38deb6b commit 58749c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/data-stores/managers/ProjectBinder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ const props = defineProps({
const selectedProject = ref();
const selectedDataStore = ref();
const selectedAllowedMethods = ref([]);
const selectedDataStoreType = ref("FHIR");
const selectedDataStoreType = ref("fhir");
const availableMethods = ref(["GET", "POST", "PUT", "DELETE"]);
const dataStoreTypes = ref(["FHIR", "S3"]);
const dataStoreTypes = ref(["fhir", "s3"]);
const loading = ref(false);
const created = ref("");
Expand Down

0 comments on commit 58749c9

Please sign in to comment.