Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a feature that allows users to rename snapshots of virtual machines with meaningful names before saving them. Previously, snapshots were automatically named with a timestamp format such as
Save-2024-07-21_12;17;16
, which made it difficult to identify the purpose or state of the snapshot.Changes:
• Implemented a basic UI with a text field that prompts users to enter a custom name for the snapshot before saving.
• The custom name can be descriptive, such as
Clean system
orVPN issue with DNS
, providing better context for the snapshot.Benefits:
• Enhanced usability by allowing users to assign meaningful names to snapshots.
• Improved organization and management of snapshots, making it easier to identify and retrieve specific snapshots based on their names.
Additional Notes:
• If no custom name is provided, the system will default to the timestamp format as before.
• This feature aims to improve user experience and streamline the workflow for managing virtual machine snapshots.