Rename PDF Editor to PDF

This commit is contained in:
Andrew Kingston 2025-04-01 13:01:10 +01:00
parent 9cc178b316
commit cf5ffbe4c5
No known key found for this signature in database
3 changed files with 4 additions and 8 deletions

View File

@ -63,7 +63,7 @@
<img alt="A form containing data" src={pdf} width="185" />
</div>
<div class="text">
<Body size="M">PDF Editor</Body>
<Body size="M">PDF</Body>
<Body size="XS">Create, edit and export your PDF</Body>
</div>
</div>

View File

@ -99,8 +99,8 @@ export class PDFScreen extends Screen {
selected: {},
},
_children: [],
_instanceName: "",
title: "PDF Editor",
_instanceName: "PDF",
title: "PDF",
}
}
}

View File

@ -6,11 +6,7 @@ import { Roles } from "@/constants/backend"
const pdf = ({ route, screens }) => {
const validRoute = getValidRoute(screens, route, Roles.BASIC)
const template = new PDFScreen()
.instanceName("PDF Editor")
.role(Roles.BASIC)
.route(validRoute)
.json()
const template = new PDFScreen().role(Roles.BASIC).route(validRoute).json()
return [
{