Skip to content

Commit 8c61bd5

Browse files
Fixing conflicts
2 parents 01e9575 + 489eef1 commit 8c61bd5

File tree

5 files changed

+55
-3
lines changed

5 files changed

+55
-3
lines changed

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,15 @@ Once the command completes you will have a new folder containing the cloned repo
8686

8787
**Setting up a remote upstream**
8888

89+
<<<<<<< HEAD
8990
The next step is to set up a remote. Remotes simply represent paths or URLs to other versions of your repository. In our case, as we cloned from our fork on GitHub a default remote will have been setup for us called origin. This origin allows us to push and pull code from our forked repository hosted on GitHub. We can list the currently configured remotes on our machine using the “git remote” command.
91+
=======
92+
```shell
93+
npm install
94+
or
95+
yarn global add
96+
```
97+
>>>>>>> master
9098
9199
Pushing and pulling from your own fork is very useful and this will be how you will work with the project most often. However, when working on that code, you’ll want to be starting from the most recent version of the code from the main donut-frontend repository. That code may have been updated and changed since you first made your fork. In order to get access to that latest code, we’ll setup a second remote which points to the main donut-frontend repository. We will not have commit rights there, so we cannot push changes, however, we will be able to fetch the latest commits that have occurred.
92100

@@ -107,9 +115,16 @@ npm install
107115
The npm install command will install all the project dependencies mentioned in the package.json file.
108116
Once all the dependencies are completely installed the final step is to run our local instance using the following command.
109117

118+
<<<<<<< HEAD
110119
```
111120
npm start
112121
```
122+
=======
123+
Adding yarn support for the packages just type `yarn`in the cli and hit enter.
124+
125+
Setting Up Database
126+
------------
127+
>>>>>>> master
113128
114129
Now visit the [http://localhost:3000](http://localhost:3000) using your favorite browser to see your very own donut-frontend app in action!
115130

@@ -145,7 +160,15 @@ This command allows us to specify a name for our new branch and immediately chec
145160
git checkout -b 223
146161
```
147162

163+
<<<<<<< HEAD
148164
Once we are on our new branch we can make changes to the code which address the issue. When we have made the required changes that address a particular issue, we need to commit that code to our branch. We can use the “git status” command to view the changes since our last commit.
165+
=======
166+
* 💬 Join the community on [Slack](https://slack.codeuino.org/)
167+
* 📣 Stay up to date on new features and announcements on the following:
168+
- [@Mailing List](mailto:[email protected]).
169+
- [@Discussion Portal](https://groups.google.com/d/forum/codeuino-devel).
170+
- [@Codeuino Wiki](https://docs.codeuino.org/).
171+
>>>>>>> master
149172
150173
```
151174
git status

package-lock.json

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/actions/postAction.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,4 @@ export const pinPost = (postId) => async (dispatch) => {
126126
} catch(error) {
127127
dispatch(errorHandler(error))
128128
}
129-
}
129+
}

src/css/components/_modals.scss

+25
Original file line numberDiff line numberDiff line change
@@ -505,3 +505,28 @@
505505
}
506506
}
507507
}
508+
509+
.modal__body {
510+
.modal__setting__btn__container {
511+
.modal__save {
512+
background: $color-modal-button-active;
513+
box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
514+
// border-radius: 34px;
515+
width: 80px;
516+
height: 38.5px;
517+
margin-right: 20px;
518+
margin-bottom: 10px;
519+
520+
.modal__buttontext {
521+
font-family: $font-family-Inter;
522+
font-style: normal;
523+
font-weight: bold;
524+
font-size: 14px;
525+
line-height: 22px;
526+
/* identical to box height */
527+
528+
color: #ffffff;
529+
}
530+
}
531+
}
532+
}

src/user/dashboard/news-feed/news-feed.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
Card,
55
Paper,
66
InputBase,
7-
ButtonGroup,
87
ListItem,
98
ListItemAvatar,
109
Avatar,
@@ -14,7 +13,7 @@ import {
1413
CardMedia,
1514
} from "@material-ui/core";
1615
import { makeStyles } from "@material-ui/core/styles";
17-
import { Button, Dropdown } from "react-bootstrap";
16+
import { Button, Dropdown, ButtonGroup } from "react-bootstrap";
1817
import AddEventModal from "./popups/AddEventModal";
1918
import AddProjectModal from "./popups/AddProjectModal";
2019
import PostReactionModal from "./popups/PostReactionsModal";

0 commit comments

Comments
 (0)