mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
fix: Make field index a string for better id/index support
Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de>
This commit is contained in:
parent
912a938157
commit
6cd83fc96a
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ namespace OCP\Files\Template;
|
|||
use OCP\Files\Template\InvalidFieldTypeException;
|
||||
|
||||
class Field implements \JsonSerializable {
|
||||
private int $index;
|
||||
private string $index;
|
||||
private string $content;
|
||||
private FieldType $type;
|
||||
private ?int $id;
|
||||
|
|
|
|||
Loading…
Reference in a new issue