Skip to content
Open
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 apps/web/core/store/issue/helpers/base-issues.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ export abstract class BaseIssuesStore implements IBaseIssuesStore {
const issueId = issue?.id ?? issueBeforeUpdate?.id;
if (!issueId) return;

// Get display filters to check if 'Show sub Work items' is enabled - Donot add Work item to main list if disabled.
// Get display filters to check if 'Show sub Work items' is enabled - Do not add Work item to main list if disabled.
const isShowWorkItemsEnabled = this.issueFilterStore.issueFilters?.displayFilters?.sub_issue ?? false;

// get issueUpdates from another method by passing down the three arguments
Expand Down
2 changes: 1 addition & 1 deletion packages/propel/src/popover/popover.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { useArgs } from "storybook/preview-api";
import { CloseIcon } from "../icons/actions/close-icon";
import { Popover } from "./root";

// cannot use satifies here because base-ui does not have portable types.
// cannot use satisfies here because base-ui does not have portable types.
const meta: Meta<typeof Popover> = {
title: "Components/Popover",
component: Popover,
Expand Down