diff --git a/src/App.vue b/src/App.vue index 76e915d1..eb1abc0c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,182 +1,182 @@ - - - - - - - - - - - - - - - - - {{user.infos.username}} - + + + + + + + + + + + + + + + + + {{user.infos.username}} + - - - - - - - Logout - - - - - - - - - - - - - - - - - - - - - + + + + + + + Logout + + + + + + + + + + + + + + + + + + + + + - Overview - - - - + Overview + + + + - Next Month - - - - + Next Month + + + + - Next Week - - - - + Next Week + + + + - Teams - - - - + Teams + + + + - New Namespace - - - - + New Namespace + + + + - Labels - - - - - - - - - - - - - - - - - - - - - - Logout - + + + {{n.name}} ({{n.lists.length}}) + + + + + + + {{l.title}} + + + + + Show hidden lists ({{n.lists.length}})... + + + + + + + + + + + + + + + + + + + + + + Logout + - - - - - - - - - - - - - - - - - - - - You are offline. - Please check your network connection and try again. - - - + + + + + + + + + + + + + + + + + + + + You are offline. + Please check your network connection and try again. + + + diff --git a/src/components/sharing/linkSharingAuth.vue b/src/components/sharing/linkSharingAuth.vue index 7ecb409c..031e0527 100644 --- a/src/components/sharing/linkSharingAuth.vue +++ b/src/components/sharing/linkSharingAuth.vue @@ -1,40 +1,40 @@ - - - - Authenticating... - - - + + + + Authenticating... + + + diff --git a/src/components/tasks/ShowListTasks.vue b/src/components/tasks/ShowListTasks.vue index f0c64c09..bdaa6477 100644 --- a/src/components/tasks/ShowListTasks.vue +++ b/src/components/tasks/ShowListTasks.vue @@ -38,7 +38,7 @@ {{ label.title }} - + - Due on {{new Date(l.dueDate).toLocaleString()}} @@ -61,21 +61,21 @@ - - - Edit Task - - - - - - - - - - - - + + + Edit Task + + + + + + + + + + + + @@ -88,9 +88,9 @@ import ListService from '../../services/list' import TaskService from '../../services/task' import ListModel from '../../models/list' - import EditTask from './edit-task' - import TaskModel from '../../models/task' - import priorities from '../../models/priorities' + import EditTask from './edit-task' + import TaskModel from '../../models/task' + import priorities from '../../models/priorities' export default { data() { @@ -98,16 +98,16 @@ listID: this.$route.params.id, listService: ListService, taskService: TaskService, - list: {}, - isTaskEdit: false, + list: {}, + isTaskEdit: false, taskEditTask: TaskModel, newTaskText: '', - priorities: {}, + priorities: {}, } }, - components: { + components: { EditTask, - }, + }, props: { theList: { type: ListModel, @@ -122,8 +122,8 @@ created() { this.listService = new ListService() this.taskService = new TaskService() - this.priorities = priorities - this.taskEditTask = null + this.priorities = priorities + this.taskEditTask = null this.isTaskEdit = false }, methods: { @@ -146,7 +146,7 @@ task.done = e.target.checked this.taskService.update(task) .then(() => { - this.list.sortTasks() + this.list.sortTasks() message.success({message: 'The task was successfully ' + (task.done ? '' : 'un-') + 'marked as done.'}, this) }) .catch(e => { @@ -163,7 +163,7 @@ editTask(id) { // Find the selected task and set it to the current object let theTask = this.list.getTaskByID(id) // Somehow this does not work if we directly assign this to this.taskEditTask - this.taskEditTask = theTask + this.taskEditTask = theTask this.isTaskEdit = true }, gravatar(user) { diff --git a/src/components/tasks/edit-task.vue b/src/components/tasks/edit-task.vue index 9b9326cd..0bbb535d 100644 --- a/src/components/tasks/edit-task.vue +++ b/src/components/tasks/edit-task.vue @@ -1,296 +1,296 @@ - - - Task Text - - - - - - Description - - - - + + + Task Text + + + + + + Description + + + + - Reminder Dates - - - - - - - + Reminder Dates + + + + + + + - - Due Date - - - - - + + Due Date + + + + + - - Duration - - - - - - - - - - - + + Duration + + + + + + + + + + + - - Repeat after - - - - - - - - Hours - Days - Weeks - Months - Years - - - - - + + Repeat after + + + + + + + + Hours + Days + Weeks + Months + Years + + + + + - - Priority - - - - Unset - Low - Medium - High - Urgent - DO NOW - - - - + + Priority + + + + Unset + Low + Medium + High + Urgent + DO NOW + + + + - - Percent Done - - - - 0% - 10% - 20% - 30% - 40% - 50% - 60% - 70% - 80% - 90% - 100% - - - - + + Percent Done + + + + 0% + 10% + 20% + 30% + 40% + 50% + 60% + 70% + 80% + 90% + 100% + + + + - - Color - - - - - + + Color + + + + + - - Assignees - - - {{a.username}} - - - - - - + + Assignees + + + {{a.username}} + + + + + + - - - - - - - Oops! No user found. Consider changing the search query. - - - - - - - - - - + + + + + + + Oops! No user found. Consider changing the search query. + + + + + + + + + + - - Labels - - - - - {{ option.title }} - - - - - - - - - + + Labels + + + + + {{ option.title }} + + + + + + + + + - - {{ relationKinds[kind] }} - - - - - {{t.text}} - - - - - - - + + {{ relationKinds[kind] }} + + + + + {{t.text}} + + + + + + + - + - - New Task Relation - - - - - - - No task found. Consider changing the search query. - - - - - - - - Select a kind of relation - - {{ label }} - - - - - - Add task Relation - - - + + New Task Relation + + + + + + + No task found. Consider changing the search query. + + + + + + + + Select a kind of relation + + {{ label }} + + + + + + Add task Relation + + + - - Save - + + Save + - + \ No newline at end of file diff --git a/src/components/tasks/gantt-component.vue b/src/components/tasks/gantt-component.vue index 87fe309e..0f9f2dbb 100644 --- a/src/components/tasks/gantt-component.vue +++ b/src/components/tasks/gantt-component.vue @@ -29,8 +29,8 @@ - {{t.text}} + {{t.text}} @@ -63,10 +63,10 @@ - - - - + + + + @@ -183,7 +183,7 @@ fullWidth: 0, now: null, dayOffsetUntilToday: 0, - isTaskEdit: false, + isTaskEdit: false, taskToEdit: null, newTaskTitle: '', newTaskFieldActive: false, @@ -312,10 +312,10 @@ }) }, 100) }, - editTask(task) { + editTask(task) { this.taskToEdit = task this.isTaskEdit = true - }, + }, showCreateNewTask() { if(!this.newTaskFieldActive) { // Timeout to not send the form if the field isn't even shown
Please check your network connection and try again.
- Authenticating... -
+ Authenticating... +
- Edit Task -
+ Edit Task +