fix: wrong projecten rename from lists
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2023-01-18 15:45:49 +01:00
parent c8ceefe12e
commit 1d2d4a2363
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
3 changed files with 4 additions and 4 deletions

View File

@ -18,8 +18,8 @@ sed -i "s/'\/api\/v1/'$VIKUNJA_API_URL/g" /usr/share/nginx/html/index.html
sed -i "s/\.SENTRY_ENABLED = false/\.SENTRY_ENABLED = $VIKUNJA_SENTRY_ENABLED/g" /usr/share/nginx/html/index.html
sed -i "s|\.SENTRY_DSN = '.*'|\.SENTRY_DSN = '$VIKUNJA_SENTRY_DSN'|g" /usr/share/nginx/html/index.html
sed -i "s/projecten 80/projecten $VIKUNJA_HTTP_PORT/g" /etc/nginx/nginx.conf
sed -i "s/projecten 443/projecten $VIKUNJA_HTTPS_PORT/g" /etc/nginx/nginx.conf
sed -i "s/listen 80/listen $VIKUNJA_HTTP_PORT/g" /etc/nginx/nginx.conf
sed -i "s/listen 443/listen $VIKUNJA_HTTPS_PORT/g" /etc/nginx/nginx.conf
# Set the uid and gid of the nginx run user
usermod --non-unique --uid ${PUID} nginx

View File

@ -98,7 +98,7 @@ export function useTaskList(projectId, sortByDefault = SORT_BY_DEFAULT) {
}, { immediate: true })
// Only projecten for query path changes
// Only listen for query path changes
watch(() => JSON.stringify(getAllTasksParams.value), (newParams, oldParams) => {
if (oldParams === newParams) {
return

View File

@ -24,7 +24,7 @@ workbox.routing.registerRoute(
new workbox.strategies.NetworkOnly(),
)
// This code projectens for the user's confirmation to update the app.
// This code listens for the user's confirmation to update the app.
self.addEventListener('message', (e) => {
if (!e.data) {
return