chore(deps): pull flow-editor 0.1.1 — false-positive dirty fix
Some checks failed
Security / Security check (push) Failing after 2s
Some checks failed
Security / Security check (push) Failing after 2s
Updates fai_studio_flow_editor pin from 51f9a1d to 8b918f8. Upstream fix: the editor's dirty-detection compared _code.text against a snapshot taken before CodeController normalisation, so opening any flow whose loaded text the controller silently rewrote (trailing-newline handling, YAML fold markers, line-ending normalisation) immediately read as dirty. Clicking a different file in the list then raised the "Discard unsaved changes?" prompt even though the operator hadn't typed anything. The package now compares _code.fullText (the canonical post-processed value) against a baseline captured AFTER the text assignment. Comparing fullText-to-fullText eliminates the spurious diff. Version: 0.51.1 → 0.51.2 Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
parent
4dbe7a28f6
commit
8ae9441e38
3 changed files with 4 additions and 4 deletions
|
|
@ -27,7 +27,7 @@ import 'widgets/widgets.dart';
|
|||
/// Studio's own build version. Bump on every UI commit so the
|
||||
/// running app self-identifies — visible in the sidebar header
|
||||
/// and quick-glance proof that you're seeing the current build.
|
||||
const String kStudioVersion = '0.51.1';
|
||||
const String kStudioVersion = '0.51.2';
|
||||
|
||||
Future<void> main() async {
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue