diff --git a/ios/App/Podfile b/ios/App/Podfile
index 79de82432..f74deb023 100644
--- a/ios/App/Podfile
+++ b/ios/App/Podfile
@@ -24,6 +24,7 @@ def capacitor_pods
pod 'CapacitorShare', :path => '../../node_modules/@capacitor/share'
pod 'CapacitorStorage', :path => '../../node_modules/@capacitor/storage'
pod 'CapawesomeCapacitorFilePicker', :path => '../../node_modules/@capawesome/capacitor-file-picker'
+ pod 'CapawesomeCapacitorScreenOrientation', :path => '../../node_modules/@capawesome/capacitor-screen-orientation'
pod 'SentryCapacitor', :path => '../../node_modules/@sentry/capacitor'
pod 'TeamhiveCapacitorVideoRecorder', :path => '../../node_modules/@teamhive/capacitor-video-recorder'
pod 'CapacitorVideoPlayer', :path => '../../node_modules/capacitor-video-player'
diff --git a/src/app/pages/agenda/edit-event/edit-event.page.html b/src/app/pages/agenda/edit-event/edit-event.page.html
index 9b5ea4a41..fcc93057d 100644
--- a/src/app/pages/agenda/edit-event/edit-event.page.html
+++ b/src/app/pages/agenda/edit-event/edit-event.page.html
@@ -275,7 +275,7 @@
- Adicionar Intervenientes*
+ Com Conhecimento*
{{participant.Name}}
diff --git a/src/app/pages/agenda/edit-event/edit-event.page.ts b/src/app/pages/agenda/edit-event/edit-event.page.ts
index e75aac060..56926e7dc 100644
--- a/src/app/pages/agenda/edit-event/edit-event.page.ts
+++ b/src/app/pages/agenda/edit-event/edit-event.page.ts
@@ -638,14 +638,14 @@ export class EditEventPage implements OnInit {
}
ajustMinuts(string) {
- var data = new Date(string);
- if (data.getMinutes() === 59) {
- data.setMinutes(0);
- var novaString = data.toISOString().slice(0, 16).replace("T", " ");
-
+ var partes = string.split(' ');
+ var horaMinuto = partes[1].split(':');
+ if (horaMinuto[1] === '59') {
+ horaMinuto[1] = '00';
+ var novaString = partes[0] + ' ' + horaMinuto.join(':');
+
return novaString;
- } else {
- return string;
}
- }
+ return string;
+ }
}
diff --git a/src/app/pages/gabinete-digital/viewer-attachment/viewer-attachment.page.html b/src/app/pages/gabinete-digital/viewer-attachment/viewer-attachment.page.html
index f45a1df33..fc65b0d24 100644
--- a/src/app/pages/gabinete-digital/viewer-attachment/viewer-attachment.page.html
+++ b/src/app/pages/gabinete-digital/viewer-attachment/viewer-attachment.page.html
@@ -8,6 +8,18 @@
+
+
+
+
+
+
+
+
{{ attachment.Assunto || "Sem assunto" }}
@@ -15,19 +27,10 @@
-
Rascunho
+
Rascunho
-
-
-
-
-
-
+