Revision f30ba0d34ef3334649f52c4bd2ea8b508e7d9677 authored by Gareth Dawson on 12 October 2022, 13:37:24 UTC, committed by GitHub on 12 October 2022, 13:37:24 UTC
* Add feature tracking for ad-hoc statistics in log rows

* Make row prop mandatory in LogDetailsRow.tsx

* Remove optional chaining

* fix: failing test by mocking reportInteraction
1 parent b176190
Raw File
build.go
// +build ignore

package main

import (
	"log"
	"os"

	"github.com/grafana/grafana/pkg/build"
)

func main() {
	log.SetOutput(os.Stdout)
	log.SetFlags(0)
	os.Exit(build.RunCmd())
}
back to top