Rename attribute

This commit is contained in:
Adrien Maston
2026-03-09 16:42:59 +01:00
parent 5a9fd6b975
commit 7974629e20
2 changed files with 5 additions and 5 deletions
@@ -13,7 +13,7 @@ BridgeElement.prototype.getStamp = function() {
return {
title: this.title,
date: this.getDate(),
by: this.getBy()
closedBy: this.getClosedBy()
}
}
@@ -31,8 +31,8 @@ BridgeElement.prototype.getDate = function() {
return this.bridgeAttribute("date") ?? null
}
BridgeElement.prototype.getBy = function() {
return this.bridgeAttribute("by") ?? null
BridgeElement.prototype.getClosedBy = function() {
return this.bridgeAttribute("closed-by") ?? null
}
BridgeElement.prototype.getDisplayTitle = function() {