Skip to content

Commit 3e4332a

Browse files
committed
[fix] Template Repository name in GitHub action
1 parent 2e741f1 commit 3e4332a

4 files changed

Lines changed: 5 additions & 10 deletions

File tree

.github/workflows/init-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
branches:
55
- main
66
env:
7-
TEMPLATE_OWNER: idea2app
8-
TEMPLATE_NAME: Lark-Next-Bootstrap-ts
7+
TEMPLATE_OWNER: Open-Source-Bazaar
8+
TEMPLATE_NAME: Activityhub-Lark
99
REPOSITORY_OWNER: ${{ github.repository_owner }}
1010
REPOSITORY_NAME: ${{ github.event.repository.name }}
1111

components/Activity/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
export * from './Agenda/Card';
2-
export * from './Agenda/FileList';
32
export { default as AgendaToolbar, type AgendaToolbarProps } from './Agenda/Toolbar';
43
export * from './Card';
54
export * from './DrawerNav';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { FilePreview } from 'mobx-restful-table';
55
import { FC, useContext } from 'react';
66
import { Badge } from 'react-bootstrap';
77

8-
import { I18nContext } from '../../../models/Base/Translation';
8+
import { I18nContext } from '../../models/Base/Translation';
99

1010
export const FileList: FC<{ data: TableCellAttachment[] }> = observer(({ data }) => {
1111
const { t } = useContext(I18nContext);

pages/activity/[id]/agenda/[agendaId]/index.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@ import { ObservedComponent } from 'mobx-react-helper';
55
import { cache, compose, errorLogger, RouteProps, router } from 'next-ssr-middleware';
66
import { Badge, Breadcrumb, Col, Container, Dropdown, DropdownButton, Row } from 'react-bootstrap';
77

8-
import {
9-
ActivityPeople,
10-
AgendaCard,
11-
AgendaToolbar,
12-
FileList,
13-
} from '../../../../../components/Activity';
8+
import { ActivityPeople, AgendaCard, AgendaToolbar } from '../../../../../components/Activity';
149
import { CommentBox } from '../../../../../components/Base/CommentBox';
10+
import { FileList } from '../../../../../components/Base/FileList';
1511
import { ScoreBar } from '../../../../../components/Base/ScoreBar';
1612
import { TimeRange } from '../../../../../components/Base/TimeRange';
1713
import { PageHead } from '../../../../../components/Layout/PageHead';

0 commit comments

Comments
 (0)