Fix association on weblink edit screen

This commit is contained in:
Tuan Pham Ngoc 2021-08-15 11:42:09 +07:00
parent 425daabf42
commit 4372ed85aa
1 changed files with 1 additions and 1 deletions

View File

@ -286,6 +286,6 @@ class WeblinkField extends FormField
*/
protected function getLabel()
{
return str_replace($this->id, $this->id . '_id', parent::getLabel());
return str_replace($this->id, $this->id . '_name', parent::getLabel());
}
}