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

При первом рендере страницы все пропсы неопределены из-за чего вылеза… #82

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
repaired error of compiletion
  • Loading branch information
DevilRigoll committed Aug 8, 2017
commit 6522268696420bd92f19c2d4bec51be4e09d440d
2 changes: 1 addition & 1 deletion src/client/components/Profile/Activity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class Activity extends React.Component<IActivity, {}> {
return(
<div id="Activity" className="ui vertical stripe quote segment">
<h3>Activity</h3>
<ul type = "none" className="ui container">
<ul style={{type: 'none'}} className="ui container">
{this.renderItems()}
</ul>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/client/components/Profile/TeamList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class TeamList extends React.Component<TeamListProps, {}> {
render() {
return(
<div className="ui card">
<ul type = "none">
<ul style={{type:'none'}}>
{this.renderItems()}
</ul>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/client/pages/calendar_list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ export default class CalendarList extends React.Component<{}, {}> {
<Table basic='very' celled>
<Table.Header fullWidth={true}>
<Table.Row>
<Table.HeaderCell>Calendar</Table.HeaderCell>
<Table.HeaderCell>Description</Table.HeaderCell>
<Table.HeaderCell key={'celendar-celendar'}> Calendar </Table.HeaderCell>
<Table.HeaderCell key={'celendar-description'}> Description </Table.HeaderCell>
<Table.HeaderCell textAlign='right'>
<Modal trigger={<Button color='green' icon="add to calendar" onClick={handleCreateModalOpened} />}
open={this.state.editModalOpened === "new"} onClose={handleCreateModalClosed}>
Expand Down