Skip to content

Commit

Permalink
Merge pull request #126 from MetaCell/feature/naming_fixes
Browse files Browse the repository at this point in the history
changes to the pipeline
  • Loading branch information
ddelpiano authored May 4, 2023
2 parents d8c7334 + 9b6bed7 commit 3ac789b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion frontend/src/Pages/SentenceDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const SentencesDetails = () => {
) {
if (
window.confirm(
`This sentence is assigned to ${sentence.owner.first_name}, assign to yourself?`
`This sentence is assigned to ${sentence.owner.first_name}, assign to yourself? To view the record without assigning ownership, select Cancel.`
)
) {
sentenceService
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/Pages/StatementDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const StatementDetails = () => {
) {
if (
window.confirm(
`This statement is assigned to ${statement.owner.first_name}, assign to yourself?`
`This statement is assigned to ${statement.owner.first_name}, assign to yourself? To view the record without assigning ownership, select Cancel.`
)
) {
statementService
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/components/CheckForDuplicates/NoResults.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ export default function NoResults({handleClearSearch}: any) {
flexDirection: "column"
}}>
<Typography variant="h6">No duplicates found</Typography>
<Typography sx={{textAlign: "center"}}>We couldn’t find any record with these origin and destination in the
database.</Typography>
<Typography sx={{textAlign: "center"}}>We couldn't find any records with this origin and destination in the database.</Typography>
<Button sx={{margin: "3em", color: "#344054", border: "1px solid #D0D5DD"}} variant="outlined"
onClick={() => handleClearSearch()}>
Clear Search
Expand Down
8 changes: 4 additions & 4 deletions k8s/codefresh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ steps:
stage: buildComposer
buildkit: true
image_name: "sckan/composer"
tag: "${{CF_BUILD_ID}}"
tag: "${{CF_SHORT_REVISION}}"
dockerfile: Dockerfile
registry: ${{REGISTRY}}
buildNginx:
Expand All @@ -27,9 +27,9 @@ steps:
stage: buildNginx
buildkit: true
build_arguments:
- COMPOSER=us.gcr.io/metacellllc/sckan/composer:${{CF_BUILD_ID}}
- COMPOSER=us.gcr.io/metacellllc/sckan/composer:${{CF_SHORT_REVISION}}
image_name: "sckan/nginx"
tag: "${{CF_BUILD_ID}}"
tag: "${{CF_SHORT_REVISION}}"
dockerfile: ./nginx/Dockerfile
registry: ${{REGISTRY}}
deploy-to-kubernetes:
Expand All @@ -44,4 +44,4 @@ steps:
- /cf-deploy-kubernetes ingress.yaml
environment:
- KUBECONTEXT=${{CLUSTER}}
- KUBERNETES_NAMESPACE=${{NAMESPACE}}
- KUBERNETES_NAMESPACE=${{NAMESPACE}}

0 comments on commit 3ac789b

Please sign in to comment.