Skip to content

Commit

Permalink
Dependency version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMatAP committed Dec 30, 2023
1 parent 03a2f71 commit b9386a3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
setuptools==69.0.2
build==1.0.3 # MIT
wheel==0.42.0 # MIT
pylint==3.0.2 # MIT
pylint==3.0.3 # MIT
pytest==7.4.3 # GPL-2.0-or-later
pytest-cov==4.1.0 # MIT

Expand All @@ -19,7 +19,7 @@ pyyaml==6.0.1 # MIT
netifaces==0.11.0 # MIT
sqlalchemy==2.0.23 # MIT
websockets==12.0 # BSD 3-Clause
fastapi==0.104.1 # MIT
fastapi==0.105.0 # MIT
uvicorn==0.24.0.post1 # BSD 3-Clause
httpx==0.25.2 # BSD 3-Clause
aiofiles==23.2.1 # Apache 2.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies = [
"netifaces==0.11.0", # MIT
"sqlalchemy==2.0.23", # MIT
"websockets==12.0", # BSD 3-Clause
"fastapi==0.104.1", # MIT
"fastapi==0.105.0", # MIT
"uvicorn==0.24.0.post1", # BSD 3-Clause
"httpx==0.25.2", # BSD 3-Clause
"aiofiles==23.2.1", # Apache 2.0
Expand Down
8 changes: 4 additions & 4 deletions src/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"sass": "^1.60.0",
"typescript": "^5.0.0",
"unplugin-fonts": "^1.0.3",
"vite": "^4.2.0",
"vite": "^4.5.1",
"vite-plugin-vuetify": "^1.0.0",
"vue-tsc": "^1.2.0"
}
Expand Down
4 changes: 3 additions & 1 deletion src/frontend/src/components/ImageCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ let expand = ref()
<v-expand-transition>
<div v-if="expand">
<v-list class="bg-transparent" density="compact">
<v-list-item title="MAC"><template v-slot:append>{{ instance.mac }}</template></v-list-item>
<v-list-item :title="image.min_cpu" subtitle="Minimum CPU"/>
<v-list-item :title="image.min_ram" subtitle="Minimum RAM"/>
<v-list-item :title="image.min_space" subtitle="Minimum Space"/>
</v-list>
</div>
</v-expand-transition>
Expand Down

0 comments on commit b9386a3

Please sign in to comment.