diff --git a/CHANGELOG.md b/CHANGELOG.md
index c2de21181..b767454cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,8 @@
### Fixed
- Added app info XML back to allow automatic translations
[#878](https://github.com/nextcloud/cookbook/pull/878) @christianlupus
+- Added unit hints in the labels of the timers
+ [#879](https://github.com/nextcloud/cookbook/pull/879) @christianlupus
## 0.9.9 - 2022-01-13
diff --git a/src/components/RecipeEdit.vue b/src/components/RecipeEdit.vue
index 7430a280d..ba3061efa 100644
--- a/src/components/RecipeEdit.vue
+++ b/src/components/RecipeEdit.vue
@@ -23,15 +23,15 @@
/>
- {{ t("cookbook", label) }}
+ {{ label }}
{{ displayTime }}
@@ -21,10 +21,6 @@ export default {
return { hours: 0, minutes: 0 }
},
},
- phase: {
- type: String,
- default: "",
- },
label: {
type: String,
default: "",
diff --git a/src/components/RecipeView.vue b/src/components/RecipeView.vue
index daf07291e..c99b520fa 100644
--- a/src/components/RecipeView.vue
+++ b/src/components/RecipeView.vue
@@ -72,23 +72,20 @@
diff --git a/webpack.config.js b/webpack.config.js
index 275273148..a9e8dfd5f 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -8,7 +8,7 @@ const path = require('path')
const { VueLoaderPlugin } = require('vue-loader')
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin')
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
-const MiniCssExtractPlugin = require("mini-css-extract-plugin").default
+const MiniCssExtractPlugin = require("mini-css-extract-plugin")
module.exports = {