mirror of
https://github.com/devonthesofa/obsidian-note-status.git
synced 2026-07-22 12:30:24 +00:00
fix: text more descriptive
This commit is contained in:
parent
070df7d3e9
commit
24df7aaa79
2 changed files with 5 additions and 2 deletions
|
|
@ -42,7 +42,10 @@ export const ChangeStatusModal: React.FC<Props> = ({
|
|||
|
||||
return (
|
||||
<>
|
||||
<h1>Change note status {filesQuantity}</h1>
|
||||
<h1>
|
||||
Change note status ({filesQuantity} file
|
||||
{filesQuantity !== 1 ? "s" : ""})
|
||||
</h1>
|
||||
|
||||
{currentStatuses.map(([frontmatterTagName, statusList]) => (
|
||||
<StatusSelectorGroup
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ export const CurrentStatusChips: React.FC<Props> = ({
|
|||
onRemoveStatus,
|
||||
}) => {
|
||||
return (
|
||||
<SettingItem name="Available statuses" vertical>
|
||||
<SettingItem name="Current statuses" vertical>
|
||||
<div
|
||||
className="note-status-chips"
|
||||
style={{
|
||||
|
|
|
|||
Loading…
Reference in a new issue