Skip to content

Commit a9fbb8e

Browse files
Fixing the time of a success message that was made to appear for 1m30s
1 parent 4fb7e3c commit a9fbb8e

File tree

7 files changed

+8
-9
lines changed

7 files changed

+8
-9
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faire-todo-app",
3-
"version": "0.0.73",
3+
"version": "0.0.74",
44
"author": {
55
"name": "Charles Schaefer"
66
},

snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ base: core22
33
architectures:
44
- build-on: [arm64]
55
- build-on: [amd64]
6-
version: '0.0.73'
6+
version: '0.0.74'
77
summary: An offline first, multiplatform todo app # 79 char long summary
88
description: |
99
Faire is an offline OpenSource multiplatform todo app, created with Tauri and Angular.

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "faire-todo-app"
6-
version = "0.0.73"
6+
version = "0.0.74"
77
description = "Faire Todo App - An open-source task management application that helps you organize your life across all your devices."
88
authors = ["Charles Schaefer"]
99
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"productName": "Faire Todo App",
3-
"version": "0.0.73",
3+
"version": "0.0.74",
44
"identifier": "com.fairetodoapp",
55
"build": {
66
"beforeDevCommand": "npm run apply-supabase-url && npm run start -- --host localhost --public-host localhost",

src/app/task/task/task.abstract.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,7 @@ export abstract class TaskAbstractComponent implements OnDestroy, OnInit {
293293
`Task marked as complete`,
294294
),
295295
severity: "success",
296-
key: "task",
297-
life: 300000
296+
key: "task"
298297
});
299298
console.log("emiting Task.onEditTask()");
300299
this.onEditTask.emit();

0 commit comments

Comments
 (0)