Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHillcox committed Dec 4, 2023
2 parents 27f939c + 9700fa7 commit 1375ba0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/atoms/ProgressBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ export default class ProgressBar extends Vue {
&.infinite::after {
background-color: var(--color-primary-button);
animation: leftToRight 3s ease-in-out infinite;
animation: leftToRight2 3s ease-in-out infinite;
@keyframes leftToRight {
@keyframes leftToRight2 {
0% {
opacity: .8;
left: -100%;
Expand Down
1 change: 0 additions & 1 deletion src/core/context/menus/instanceMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ let folderOptions: MenuItem<InstanceMenuContext>[] = []
folderOptions.push({
title: 'Instance folder',
async action(context) {
console.log(context)
await platform.get.io.openFinder(context.instance.path);
},
})
Expand Down
2 changes: 1 addition & 1 deletion src/views/Home.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="home page-spacing">
<div class="home page-spacing">
<template v-if="recentInstances.length">
<h2 class="text-lg font-bold text-white mb-4">Jump back in where you left off</h2>

Expand Down
1 change: 0 additions & 1 deletion src/views/Settings/InstanceSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ export default class InstanceSettings extends Vue {
const migrationResult = await new Promise((res) => {
const onMoveProgress = (data: any) => {
if (data.type !== "operationUpdate" && data.type !== "moveInstancesReply") return;
console.log("crap", data);
if (data.type === "operationUpdate") {
const typedData = data as OperationProgressUpdateData;
if (typedData.stage === "FINISHED") {
Expand Down

0 comments on commit 1375ba0

Please sign in to comment.