Skip to content

Commit

Permalink
Merge pull request #4 from JackalLabs/marston/draft-box
Browse files Browse the repository at this point in the history
styling and pages
  • Loading branch information
TheMarstonConnell authored Feb 14, 2024
2 parents ee0f49f + ba83e75 commit 8c92b50
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 27 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions public/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
beacon.jackalprotocol.com
4 changes: 2 additions & 2 deletions src/utils/conversion.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function sanitizeName(source: string): string {
return source.replace(/[ +/=]/g, '_')
.replace(/[^ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_]/g, '')
return source.replace(/[ .+/=]/g, '_')
.replace(/[^ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\-_]/g, '')
}
1 change: 1 addition & 0 deletions src/views/UserPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
}
.work-item {
width: 100%;
}
.work-body {
Expand Down
19 changes: 6 additions & 13 deletions src/views/UserSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
<div class="main-container">
<h1>Dashboard</h1>
<main>
<section>
<section v-if="myRns">
<h2>Display RNS</h2>
<select>
<option v-for="item in Object.keys(myRns)" :key="item">{{ item }}</option>
</select>
</section>
<section>
<h2>Publish Format</h2>
Expand All @@ -15,22 +18,12 @@
</template>

<script setup lang="ts">
import { bStore } from '@/store/main.ts'
const myRns = bStore.getOwnedRns()
</script>

<style lang="scss">
main {
display: flex;
flex-flow: row;
}
aside {
width: 200px;
}
.bytemd {
//margin: 0.5em;
height: calc(100vh - 200px);
width: calc(100vw - 200px - 4rem);
}
</style>

0 comments on commit 8c92b50

Please sign in to comment.