Skip to content

Commit

Permalink
Clarify private and public prompts
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Wang <[email protected]>
  • Loading branch information
xiaohk committed Jan 25, 2024
1 parent fad861a commit 91200fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Wordflow is a social and customizable AI writing assistant tool! With Wordflow,

<details>
<summary>Click to see the demo video!</summary>
<video src="https://github.com/poloclub/wordflow/assets/15007159/078e2c6b-39cd-467e-b598-60f093a7ea01"></video>
<video src="https://github.com/poloclub/wordflow/assets/15007159/276bb179-ec92-4e44-bb65-e796b94506c6"></video>
</details>

## Get Started
Expand Down
2 changes: 1 addition & 1 deletion src/components/panel-community/panel-community.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ export class WordflowPanelCommunity extends LitElement {
.promptIsSubset
? '+'
: ''}
Prompts</span
Public Prompts</span
>
<span class="filter" ?is-hidden=${this.curSelectedTag === ''}
>tagged
Expand Down
5 changes: 3 additions & 2 deletions src/components/panel-local/panel-local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -590,11 +590,12 @@ export class WordflowPanelLocal extends LitElement {
}

// Compose the prompt count label
let promptCountLabel = html`${this.promptManager.localPromptCount} Prompts`;
let promptCountLabel = html`${this.promptManager.localPromptCount} Private
Prompts`;

if (this.showSearchBarCancelButton) {
promptCountLabel = html`${this.promptManager.localPromptBroadcastCount} /
${this.promptManager.localPromptCount} Prompts`;
${this.promptManager.localPromptCount} Private Prompts`;
}

return html`
Expand Down

0 comments on commit 91200fe

Please sign in to comment.