Table doesn't hold data

Hi,
After having the same problem with Terminal, I tried using Table to hold some alarm Logs but it doesn’t hold the data, when using Device Tiles + Provisioning, when one go to the main screen and opens the template again the Table resets.

Wemos D1 mini lite
Samsung S7 - Android 7.0
Blynk App 2.20.1
Blynk Server and Library v0.5.2

#define USE_CUSTOM_BOARD
#include <Arduino.h>
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include "BlynkProvisioning.h"
#include <TimeLib.h>
#include <WidgetRTC.h>

int rowIndex = 0;

BlynkTimer timer;             //Up To 16 Timers
WidgetRTC rtc;                //Initiate RTC
WidgetTable table;
BLYNK_ATTACH_WIDGET(table, V10);

BLYNK_CONNECTED() {
  rtc.begin();
}

void NotifyControllerOffline()
{
    String currentDate = String(day()) + "/" + month() + "/" + (year()-2000);
    table.addRow(rowIndex,"Controller not responding",second());
    rowIndex++;
}

void setup()
{
  Serial.begin(19200);
  BlynkProvisioning.begin();
  timer.setInterval(5000L, NotifyControllerOffline);
}//end of Setup

void loop()
{
  BlynkProvisioning.run();
  timer.run();
}//end loop

Hello. Not supported at the moment - https://github.com/blynkkk/blynk-server/issues/792