1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-02 09:25:17 +02:00

Added changelog. Added curl to Docker image

This commit is contained in:
unknown 2021-07-28 12:52:30 +02:00
parent a5d6cf04cf
commit d39eda49de
7 changed files with 17 additions and 5 deletions

View file

@ -17,6 +17,15 @@ const AppDetails = (): JSX.Element => {
{' '}
version {process.env.REACT_APP_VERSION}
</p>
<p className={classes.AppVersion}>
See changelog {' '}
<a
href='https://github.com/pawelmalak/flame/CHANGELOG.md'
target='_blank'
rel='noreferrer'>
here
</a>
</p>
<Button click={() => checkVersion(true)}>Check for updates</Button>
</Fragment>
)

View file

@ -72,7 +72,7 @@ export interface AddBookmarkAction {
export const addBookmark = (formData: NewBookmark | FormData) => async (dispatch: Dispatch) => {
try {
const res = await axios.post<ApiResponse<Bookmark>>('/api/bookmarks', formData);
console.log(res.data.data)
dispatch<CreateNotificationAction>({
type: ActionTypes.createNotification,
payload: {