Skip to content

Commit

Permalink
Fix styles and bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmagoo committed Sep 26, 2023
1 parent aabb27c commit ea941aa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "nostr-writer",
"name": "Nostr Writer",
"version": "1.3.0",
"version": "1.4.0",
"minAppVersion": "0.15.0",
"description": "Publish your writing directly to Nostr.",
"author": "James McGauran",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nostr-writer",
"version": "1.3.0",
"version": "1.4.0",
"description": "Publish your writing directly to Nostr.",
"main": "main.js",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/ConfirmPublishModal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export default class ConfirmPublishModal extends Modal {
const hashtags = matches.map((match: string) => match.slice(1));

for (const tag of hashtags) {
console.log(tag);
noteCategoryTags.push(tag);
}

Expand Down
6 changes: 3 additions & 3 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@
}

/* Style for the pills container */
#pills-container {
.pills-container {
display: flex;
flex-direction: column;
flex-direction: row;
flex-wrap: wrap;
gap: 8px;
gap: 2px;
}

.pill {
Expand Down

0 comments on commit ea941aa

Please sign in to comment.