Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong words #235

Merged
merged 1 commit into from
Apr 1, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const TableLoadingRow: React.FC<IProps> = ({ colSpan }) => {
<tr>
<td colSpan={colSpan} style={{ padding: 0, height: 0 }}>
<div className="relative w-full rounded bg-gray-200">
<div className="tabel-loading relative top-0 h-1 w-full rounded" />
<div className="table-loading relative top-0 h-1 w-full rounded" />
</div>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/containers/tables/IssueTable/IssueTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ import type { IssueTrackerType } from '@/types/issue-tracker.type';
import type { IssueType } from '@/types/issue.type';
import { FeedbackTableInIssue } from '../FeedbackTable';
import IssueSettingPopover from './IssueSettingPopover';
import IssueTabelSelectBox from './IssueTabelSelectBox';
import IssueTableSelectBox from './IssueTableSelectBox';
import { TableRow } from './TableRow';
import TicketLink from './TicketLink';

Expand Down Expand Up @@ -348,7 +348,7 @@ const IssueTable: React.FC<IProps> = ({ projectId }) => {

return (
<div className="flex flex-col gap-2">
<IssueTabelSelectBox
<IssueTableSelectBox
currentIssueKey={currentIssueKey}
issueCountData={issueCountData}
onChangeOption={(status) => setQuery({ ...query, status })}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface IProps extends React.PropsWithChildren {
issueCountData: { key: string; count: number }[] | undefined;
}

const IssueTabelSelectBox: React.FC<IProps> = (props) => {
const IssueTableSelectBox: React.FC<IProps> = (props) => {
const { currentIssueKey, onChangeOption, issueCountData } = props;

const { t } = useTranslation();
Expand Down Expand Up @@ -62,4 +62,4 @@ const IssueTabelSelectBox: React.FC<IProps> = (props) => {
);
};

export default IssueTabelSelectBox;
export default IssueTableSelectBox;
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
export { default } from './IssueTabelSelectBox';
export { default } from './IssueTableSelectBox';
8 changes: 4 additions & 4 deletions apps/web/src/pages/_app.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
@tailwind utilities;

@layer components {
.tabel-loading {
.table-loading {
position: relative;
overflow: hidden;
@apply bg-blue-primary;
}

.tabel-loading::after {
.table-loading::after {
position: absolute;
top: 0;
right: 0;
Expand All @@ -22,12 +22,12 @@
rgba(233, 233, 233, 0.9) 50%,
rgba(233, 233, 233, 0.8) 100%
);
animation: tabel-loading 1s ease-out infinite;
animation: table-loading 1s ease-out infinite;
content: '';
}
}

@keyframes tabel-loading {
@keyframes table-loading {
100% {
transform: translateX(0%);
opacity: 0;
Expand Down
Loading