Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion space/core/components/issues/filters/priority.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const FilterPriority: React.FC<Props> = observer((props) => {
/>
))
) : (
<p className="text-xs italic text-custom-text-400">{t("common.no_matches_found")}</p>
<p className="text-xs italic text-custom-text-400">{t("common.search.no_matches_found")}</p>
)}
</div>
)}
Expand Down
2 changes: 1 addition & 1 deletion web/app/profile/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const ProfileLayoutSidebar = observer(() => {
<div className="flex items-center gap-1.5 py-[1px]">
<ProjectActionIcons type={link.key} size={16} />

{!sidebarCollapsed && <p className="text-sm leading-5 font-medium">{t(link.key)}</p>}
{!sidebarCollapsed && <p className="text-sm leading-5 font-medium">{t(link.i18n_label)}</p>}
</div>
</SidebarNavItem>
</Tooltip>
Expand Down
2 changes: 1 addition & 1 deletion web/core/components/dropdowns/cycle/cycle-options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export const CycleOptions: FC<CycleOptionsProps> = observer((props) => {
</Combobox.Option>
))
) : (
<p className="px-1.5 py-1 italic text-custom-text-400">{t("common.no_matches_found")}</p>
<p className="px-1.5 py-1 italic text-custom-text-400">{t("common.search.no_matches_found")}</p>
)
) : (
<p className="px-1.5 py-1 italic text-custom-text-400">{t("common.loading")}</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const FilterPriority: FC<Props> = observer((props) => {
/>
))
) : (
<p className="text-xs italic text-custom-text-400">{t("common.no_matches_found")}</p>
<p className="text-xs italic text-custom-text-400">{t("common.search.no_matches_found")}</p>
)}
</div>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const FilterPriority: React.FC<Props> = observer((props) => {
/>
))
) : (
<p className="text-xs italic text-custom-text-400">{t("common.no_matches_found")}</p>
<p className="text-xs italic text-custom-text-400">{t("common.search.no_matches_found")}</p>
)}
</div>
)}
Expand Down
Loading