Rename PDF Editor to PDF
This commit is contained in:
parent
9cc178b316
commit
cf5ffbe4c5
|
@ -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>
|
||||
|
|
|
@ -99,8 +99,8 @@ export class PDFScreen extends Screen {
|
|||
selected: {},
|
||||
},
|
||||
_children: [],
|
||||
_instanceName: "",
|
||||
title: "PDF Editor",
|
||||
_instanceName: "PDF",
|
||||
title: "PDF",
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue