diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index e55f734..5bca115 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -125,9 +125,11 @@ jobs: VALUES_FILE="deployments/clusters/$CLUSTER_NAME/values/strata-apps-values.yaml" if [[ "${{ needs.detect-changes.outputs.frontend_changed }}" == "true" ]]; then + echo "Updating frontend tag in $VALUES_FILE" yq eval -i ".batchExpFe.image.tag = \"$SHORT_TAG\"" $VALUES_FILE fi if [["${{ needs.detect-changes.outputs.backend_changed }}" == "true" ]]; then + echo "Updating backend tag in $VALUES_FILE" yq eval -i ".batchExpBe.image.tag = \"$SHORT_TAG\"" $VALUES_FILE fi - name: Commit and push changes diff --git a/backend/database/src/services/utils.rs b/backend/database/src/services/utils.rs index db9a315..4da7c4f 100644 --- a/backend/database/src/services/utils.rs +++ b/backend/database/src/services/utils.rs @@ -1,4 +1,5 @@ use sea_orm::Order; + pub(crate) fn resolve_order(order: Option<&str>) -> Order { match order { Some("asc") => Order::Asc, diff --git a/frontend/src/components/SearchSection.tsx b/frontend/src/components/SearchSection.tsx index fcfbe21..3448b37 100644 --- a/frontend/src/components/SearchSection.tsx +++ b/frontend/src/components/SearchSection.tsx @@ -33,9 +33,7 @@ const SearchSection = () => { console.error("UNKNOWN Error fetching data:", error); } }; - // const handleTitleClick = () => { - // navigate("/"); - // }; + return (
<>