From 1e90321b5da42665dc7b5744f0e8fe8332545ff1 Mon Sep 17 00:00:00 2001 From: Erin Rivas Date: Wed, 14 Feb 2024 03:46:37 -0600 Subject: [PATCH 1/4] sanitization fixes --- src/utils/conversion.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/conversion.ts b/src/utils/conversion.ts index b2f7e58..d8efb31 100644 --- a/src/utils/conversion.ts +++ b/src/utils/conversion.ts @@ -1,4 +1,4 @@ export function sanitizeName(source: string): string { - return source.replace(/[ +/=]/g, '_') - .replace(/[^ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_]/g, '') + return source.replace(/[ .+/=]/g, '_') + .replace(/[^ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\-_]/g, '') } From 41ee21df6408e0579c09f2d30b1e623e5fdc8a50 Mon Sep 17 00:00:00 2001 From: Erin Rivas Date: Wed, 14 Feb 2024 03:54:21 -0600 Subject: [PATCH 2/4] testing --- src/views/UserSettings.vue | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/src/views/UserSettings.vue b/src/views/UserSettings.vue index 148c65d..0221c1c 100644 --- a/src/views/UserSettings.vue +++ b/src/views/UserSettings.vue @@ -3,8 +3,11 @@

Dashboard

-
+

Display RNS

+

Publish Format

@@ -15,22 +18,12 @@ From 46dbc14f31299dff5ef216820c6fed685c5b3a44 Mon Sep 17 00:00:00 2001 From: marston Date: Wed, 14 Feb 2024 11:45:28 -0500 Subject: [PATCH 3/4] adding cname --- public/CNAME | 1 + src/views/UserPage.vue | 1 + 2 files changed, 2 insertions(+) create mode 100644 public/CNAME diff --git a/public/CNAME b/public/CNAME new file mode 100644 index 0000000..9759ac5 --- /dev/null +++ b/public/CNAME @@ -0,0 +1 @@ +beacon.jackalprotocol.com \ No newline at end of file diff --git a/src/views/UserPage.vue b/src/views/UserPage.vue index 4970dcd..f3d252d 100644 --- a/src/views/UserPage.vue +++ b/src/views/UserPage.vue @@ -111,6 +111,7 @@ } .work-item { + width: 100%; } .work-body { From ba83e753a16c4ac8844acd22fc4c97b02ae4a0f7 Mon Sep 17 00:00:00 2001 From: marston Date: Wed, 14 Feb 2024 11:46:58 -0500 Subject: [PATCH 4/4] fixing deploy test --- .github/workflows/test-deploy.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index e8d3c60..1f9b444 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -6,20 +6,8 @@ on: pull_request: push: - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Allow one concurrent deployment -concurrency: - group: 'pages' - cancel-in-progress: true - jobs: test-deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - name: Checkout