code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/app/components/Features/ProxyTable/index.js b/app/components/Features/ProxyTable/index.js @@ -31,7 +31,7 @@ const HorusPay = props => {
data: {
voter: networkIdentity ? networkIdentity.name : '',
proxy,
- producers: null,
+ producers: [],
},
},
];
| 3 |
diff --git a/Makefile b/Makefile @@ -207,7 +207,13 @@ clean:
@rm -rf prep/
@rm -rf site/
@rm -f duk duk-rom dukd dukd-rom duk.O2 duk.O3 duk.O4
- @rm -f duk-clang duk-g++ dukd-g++
+ @rm -f duk-pgo duk-pgo.O2
+ @rm -f duk-perf duk-perf.O2 duk-perf.O3 duk-perf.O4
+ @rm -f duk-perf-pgo duk-perf-pgo.O2 duk-perf-pgo.O3 duk-p... | 7 |
diff --git a/articles/migrations/index.md b/articles/migrations/index.md @@ -89,8 +89,8 @@ The affected endpoints are:
- [DELETE /api/v2/users/{id}/multifactor/{provider}](/api/management/v2#!/Users/delete_multifactor_by_provider)
- [POST /api/v2/device-credentials](/api/management/v2#!/Device_Credentials/post_device_c... | 2 |
diff --git a/CHANGELOG.md b/CHANGELOG.md All notable changes to this project are documented in this file.
-## Head
+## 13.13.1
- Fixed: invalid JSON for `max-warnings` option ([#5267](https://github.com/stylelint/stylelint/pull/5267)).
- Fixed: `no-invalid-position-at-import-rule` false positives for dollar variables (... | 6 |
diff --git a/src/components/dashboard/SendLinkSummary.js b/src/components/dashboard/SendLinkSummary.js @@ -10,6 +10,7 @@ import { receiveStyles } from './styles'
import TopBar from '../common/TopBar'
import API from '../../lib/API/api'
import isEmail from 'validator/lib/isEmail'
+import isMobilePhone from '../../lib/va... | 0 |
diff --git a/src/server/routes/apiv3/security-setting.js b/src/server/routes/apiv3/security-setting.js @@ -709,9 +709,17 @@ module.exports = (crowi) => {
githubClientSecret: await crowi.configManager.getConfig('crowi', 'security:passport-github:clientSecret'),
isSameUsernameTreatedAsIdenticalUser: await crowi.configMan... | 12 |
diff --git a/examples/__tests__/SimpleSlider.test.js b/examples/__tests__/SimpleSlider.test.js @@ -32,4 +32,26 @@ describe('Simple Slider', function() {
const wrapper = mount(<SimpleSlider />);
expect(wrapper.find('.slick-next').length).toEqual(1);
});
+
+ it('should got to second slide when next button is clicked', fu... | 0 |
diff --git a/geometry-worker.js b/geometry-worker.js @@ -412,6 +412,7 @@ const _flatEncode = meshes => {
let totalSize = 0;
for (const mesh of meshes) {
totalSize += MAX_NAME_LENGTH;
+ totalSize += Uint32Array.BYTES_PER_ELEMENT;
totalSize += Uint32Array.BYTES_PER_ELEMENT * 3;
totalSize += mesh.positions.byteLength;
tot... | 0 |
diff --git a/docs/api-reference/carto/carto-layer.md b/docs/api-reference/carto/carto-layer.md @@ -117,7 +117,7 @@ Only supported when apiVersion is `API_VERSIONS.V3` and `type` is `MAP_TYPES.TAB
Name of the `geo_column` in the CARTO platform. Use this override the default column ('geom'), from which the geometry infor... | 2 |
diff --git a/website/js/components/Heading.js b/website/js/components/Heading.js @@ -2,11 +2,12 @@ import { h } from 'hyperapp'
import { toKebabCase } from '../utils'
const Subheading = scope => (props, children) => {
- const id = toKebabCase(scope + children[0])
- const link = <a href={'#' + id}>{children}</a>
+ const... | 7 |
diff --git a/src/__tests__/hasError.spec.js b/src/__tests__/hasError.spec.js @@ -10,6 +10,12 @@ const describeHasError = (name, structure, expect) => {
const hasError = createHasError(structure)
describe(name, () => {
+ it('should throw an error for an invalid field type', () => {
+ const field = fromJS({ name: 'foo', ... | 1 |
diff --git a/src/components/ProductDetailOptionsList/ProductDetailOptionsList.js b/src/components/ProductDetailOptionsList/ProductDetailOptionsList.js @@ -14,8 +14,8 @@ const styles = (theme) => ({
}
});
-@observer
@withStyles(styles, { withTheme: true })
+@observer
export default class OptionsList extends Component {
... | 2 |
diff --git a/src/pages/Group/AddServiceComponent.js b/src/pages/Group/AddServiceComponent.js @@ -349,7 +349,6 @@ export default class AddServiceComponent extends PureComponent {
<Market
{...MarketParameter}
isHelm={false}
- scope="enterprise"
handleServiceComponent={scopeMax => {
this.handleServiceComponent(
false,
| 1 |
diff --git a/components/core/Profile.js b/components/core/Profile.js @@ -310,7 +310,7 @@ export default class Profile extends React.Component {
}).length,
fetched: false,
tab: this.props.tab,
- isOnline: false,
+ /* isOnline: false, */
};
componentDidMount = () => {
@@ -404,11 +404,10 @@ export default class Profile ex... | 1 |
diff --git a/packages/app/src/test/service/page.test.js b/packages/app/src/test/service/page.test.js @@ -104,6 +104,24 @@ describe('PageService', () => {
creator: testUser1,
lastUpdateUser: testUser1,
},
+ {
+ path: '/level1/level2',
+ grant: Page.GRANT_PUBLIC,
+ creator: testUser1,
+ lastUpdateUser: testUser1,
+ },
+ ... | 10 |
diff --git a/src/assets/js/eventregistration.js b/src/assets/js/eventregistration.js @@ -90,7 +90,7 @@ document.getElementById('generateQR').addEventListener('click', async function (
let canvas = document.getElementById('eventqrcode');
let ctx = canvas.getContext('2d');
- const qr = await GenerateQRCode(grid, descript... | 14 |
diff --git a/docs/cypress/integration/guides_spec.coffee b/docs/cypress/integration/guides_spec.coffee @@ -11,7 +11,7 @@ describe "Guides", ->
cy.url()
.should('match', new RegExp(GUIDES_PATH))
- it "all section & body links work", ->
+ xit "all section & body links work", ->
filterMailtos = (urlsToFilter) ->
Cypress._... | 12 |
diff --git a/public/javascripts/SVLabel/src/SVLabel/keyboard/Keyboard.js b/public/javascripts/SVLabel/src/SVLabel/keyboard/Keyboard.js @@ -12,7 +12,6 @@ function Keyboard (svl, canvas, contextMenu, googleMap, ribbon, zoomControl) {
* fix for the shift-getting-stuck bug.
* this is a documented issue, see here:
* https:/... | 1 |
diff --git a/spec/lib/carto/tracking/events_spec.rb b/spec/lib/carto/tracking/events_spec.rb @@ -107,8 +107,6 @@ module Carto
:type,
:object_created_at,
:lifetime,
- :username,
- :email,
:plan,
:user_active_for,
:user_created_at,
@@ -197,8 +195,6 @@ module Carto
:object_created_at,
:lifetime,
:origin,
- :username,
- :e... | 2 |
diff --git a/articles/tutorials/bulk-importing-users-into-auth0.md b/articles/tutorials/bulk-importing-users-into-auth0.md @@ -82,8 +82,9 @@ A file with the following contents is valid:
}
]
```
-
-> The file size limit for a bulk import is 500KB. You will need to start multiple imports if your data exceeds this size.
+... | 14 |
diff --git a/src/traces/ohlc/hover.js b/src/traces/ohlc/hover.js @@ -101,10 +101,8 @@ module.exports = function hoverPoints(pointData, xval, yval, hovermode) {
// put it all in .extraText
pointData.extraText = textParts.join('<br>');
- // this puts the label at the midpoint of the box, ie
+ // this puts the label *and ... | 2 |
diff --git a/test/geometry/MarkerSpec.js b/test/geometry/MarkerSpec.js @@ -319,6 +319,7 @@ describe('Geometry.Marker', function () {
});
it('change marker file by updateSymbol', function (done) {
+ this.timeout(10000);
var marker = new maptalks.Marker(map.getCenter(), {
symbol : {
'markerFile' : 'resources/tile.png'
| 3 |
diff --git a/pages/docs/manual/latest/build-overview.mdx b/pages/docs/manual/latest/build-overview.mdx @@ -37,7 +37,7 @@ Add `-w` to keep the built-in watcher running. Any new file change will be picke
- `bsb -make-world -w -ws 0.0.0.0:9999`
- `bsb -make-world -w -ws 5000`
-**To build only yourself**, use `bsb -make`.
... | 1 |
diff --git a/userscript.user.js b/userscript.user.js @@ -1654,7 +1654,8 @@ var $$IMU_EXPORT$$;
allow_video: {
name: "Videos",
description: "Allows videos to be returned",
- category: "rules"
+ category: "rules",
+ onupdate: update_rule_setting
},
allow_watermark: {
name: "Larger watermarked images",
@@ -48214,6 +48215,... | 11 |
diff --git a/js/models/trackerlist-site.es6.js b/js/models/trackerlist-site.es6.js @@ -56,9 +56,8 @@ SiteTrackerList.prototype = $.extend({},
}
})
.sort((a, b) => {
- return a.count - b.count;
+ return b.count - a.count;
})
- .reverse();
} else {
console.debug('SiteTrackerList model: no tab');
| 2 |
diff --git a/lib/monitoring/addon/node-detail/template.hbs b/lib/monitoring/addon/node-detail/template.hbs <section class="header clearfix">
<div class="pull-left">
<h1 class="vertical-middle">
- {{t 'hostsPage.hostPage.header.title' name=model.node.displayName}}{{copy-to-clipboard clipboardText=model.node.hostname siz... | 14 |
diff --git a/token-metadata/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/metadata.json b/token-metadata/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/metadata.json "symbol": "UST",
"address": "0xa47c8bf37f92aBed4A126BDA807A7b7498661acD",
"decimals": 18,
- "dharmaVerificationStatus": "UNVERIFIED"
+ "dharmaVerificationStatus"... | 3 |
diff --git a/backend/consul_connection.go b/backend/consul_connection.go @@ -2,6 +2,7 @@ package main
import (
"fmt"
+ "net"
"time"
"github.com/gorilla/websocket"
@@ -543,8 +544,13 @@ func (c *ConsulConnection) dereigsterConsulService(action Action) {
nodeAddress := params["nodeAddress"].(string)
serviceID := params["s... | 4 |
diff --git a/package.json b/package.json "lint": "eslint .",
"list-contributors": "echo 'clone https://github.com/mgechev/github-contributors-list.git first, then run npm install' && cd ../github-contributors-list && node bin/githubcontrib --owner dherault --repo serverless-offline --sortBy contributions --showlogin tr... | 0 |
diff --git a/bl-themes/alternative/php/home.php b/bl-themes/alternative/php/home.php <ul class="pagination flex-wrap justify-content-center">
<!-- Previous button -->
- <li class="page-item mr-2 <?php if (!Paginator::showPrev()) echo 'disabled' ?>">
+ <?php if (Paginator::showPrev()): ?>
+ <li class="page-item mr-2">
<... | 2 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Integration with Canvas Learning Management System (LMS) -- an early example implementation
- Tags to questions in Content Designer and ability to create reports in Kibana.
- Int... | 3 |
diff --git a/packages/driver/test/cypress/integration/commands/actions/scroll_spec.coffee b/packages/driver/test/cypress/integration/commands/actions/scroll_spec.coffee @@ -423,13 +423,13 @@ describe "src/cy/commands/actions/scroll", ->
cy.get("#scroll-to-both").scrollTo(25, { duration: 1 }).then ->
lastLog = @lastLog
... | 0 |
diff --git a/index.d.ts b/index.d.ts @@ -38,7 +38,7 @@ declare module "hyperapp" {
tag: NonEmptyString<T>,
props: CustomPayloads<S, C> & Props<S>,
children?: MaybeVNode<S> | readonly MaybeVNode<S>[]
- ): VNode<S>
+ ): ElementVNode<S>
// `memo()` stores a view along with any given data for it.
function memo<S, D extends... | 7 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,17 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.47.3] -- 2019-04-18
+
+### Fixed
+- Fix MathJax rendering in Firefox [#3783]
+- Fix `waterfall` hover under `hovermode: 'closest'` [#... | 3 |
diff --git a/dapp/src/components/buySell/CoinRow.js b/dapp/src/components/buySell/CoinRow.js @@ -165,11 +165,9 @@ const CoinRow = ({
className="coin-info flex-grow d-flex d-md-none"
onClick={() => setShowMore(!showMore)}
>
- {active && (
- <>
<img src="/images/more-icon.svg" className="more-icon" />
+ {active && (
<div... | 11 |
diff --git a/packages/core/parcel-bundler/src/FSCache.js b/packages/core/parcel-bundler/src/FSCache.js @@ -2,7 +2,7 @@ const fs = require('./utils/fs');
const path = require('path');
const md5 = require('./utils/md5');
const objectHash = require('./utils/objectHash');
-const pjson = require('../package.json');
+const p... | 10 |
diff --git a/app-manager.js b/app-manager.js @@ -360,6 +360,17 @@ class AppManager extends EventTarget {
}
return null;
}
+ getPairByPhysicsId(physicsId) {
+ for (const app of this.apps) {
+ const physicsObjects = app.getPhysicsObjects();
+ for (const physicsObject of physicsObjects) {
+ if (physicsObject.physicsId ===... | 0 |
diff --git a/app/src/pages/inside/logsPage/historyLine/historyLineItem/historyLineItemTooltip/historyLineItemTooltip.jsx b/app/src/pages/inside/logsPage/historyLine/historyLineItem/historyLineItemTooltip/historyLineItemTooltip.jsx @@ -44,9 +44,9 @@ const messages = defineMessages({
id: 'HistoryLineItemTooltip.launch',
... | 14 |
diff --git a/public/app/js/cbus-data.js b/public/app/js/cbus-data.js @@ -68,11 +68,7 @@ cbus.data.update = function(specificFeedData) {
});
};
-cbus.data.updateAudios = function() {
- let audiosContainerElem = document.getElementsByClassName("audios")[0];
-
- function makeAudioElem(episodeInfo) {
- if (!document.queryS... | 7 |
diff --git a/generators/client/templates/angular/src/main/webapp/app/shared/login/_login.component.ts b/generators/client/templates/angular/src/main/webapp/app/shared/login/_login.component.ts @@ -3,7 +3,7 @@ import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
import { Router } from '@angular/router';
import {... | 1 |
diff --git a/edit.js b/edit.js @@ -869,9 +869,16 @@ const addItem = async (position, quaternion) => {
scene.add(itemMesh);
itemMeshes.push(itemMesh);
};
+
+{ // XXX
addItem(new THREE.Vector3(0, 1, 0), new THREE.Quaternion());
-const timeFactor = 60 * 1000;
+ const file = new Blob(['https://google.com'], {type: 'text/pl... | 0 |
diff --git a/README.md b/README.md @@ -50,21 +50,14 @@ db.createCollection(
});
```
-Other calls can create additional documents for the same collection.
-
### Resources
-Here are some online resources that walk you through working with MarkLogic
-using the Node.js Client API:
-
-* [MarkLogic Node.js Client API](http:/... | 0 |
diff --git a/src/parsers/GmlSeeker.hx b/src/parsers/GmlSeeker.hx @@ -145,11 +145,14 @@ class GmlSeeker {
+ "@is(?:s)?"
+ "\\b\\s*\\{(.+?)\\}"
);
- private static var jsDoc_is_line = new RegExp("^\\s*(?:" + [
- "globalvar\\s+(\\w+)", // globalvar name
- "global\\s*\\.\\s*(\\w+)\\s*=", // global.name=
- "(\\w+)\\s*=" // ... | 11 |
diff --git a/packages/app/src/components/PageDeleteModal.tsx b/packages/app/src/components/PageDeleteModal.tsx @@ -212,10 +212,10 @@ const PageDeleteModal: FC = () => {
if (pages != null) {
return pages.map(page => (
- <div key={page.data._id}>
+ <p key={page.data._id} className="mb-1">
<code>{ page.data.path }</code>
... | 7 |
diff --git a/src/data/event.js b/src/data/event.js @@ -30,7 +30,6 @@ export type Event = {
},
sys: {
id: string,
- type: string,
contentType: {
sys: {
id: "event"
@@ -47,7 +46,6 @@ export type Performance = {
},
sys: {
id: string,
- type: string,
contentType: {
sys: {
id: "performance"
@@ -70,7 +68,6 @@ export type Fea... | 2 |
diff --git a/src/mesh/object.js b/src/mesh/object.js @@ -63,7 +63,7 @@ mesh.object = class MeshObject {
}
applyMatrix4(matrix) {
- return this.applyMatrix(matrix.elements);
+ return this.applyMatrix(matrix.elements).matrixChanged();
}
focus() {
| 3 |
diff --git a/main.js b/main.js @@ -224,16 +224,14 @@ function handleSquirrelEvent() {
* @param {*} dir
*/
function buildModulesInFolder(app, namespace, dir) {
- console.log("%%%%%", dir);
if (fs.existsSync(dir)) {
var rootDir = fs.readdirSync(dir);
-console.log(rootDir, "&&&&&&&")
+
if (rootDir && rootDir.length > 0) {... | 2 |
diff --git a/src/components/CreateMenu.js b/src/components/CreateMenu.js @@ -55,13 +55,13 @@ class CreateMenu extends PureComponent {
const menuItemData = [
{
icon: ChatBubble,
- text: 'Request Money', // reset
- onPress: () => this.setOnModalHide(() => redirect(ROUTES.IOU_REQUEST_MONEY)), // ROUTES.NEW_CHAT
+ text: 'N... | 13 |
diff --git a/Apps/Sandcastle/gallery/development/Many Clipping Planes.html b/Apps/Sandcastle/gallery/development/Many Clipping Planes.html <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta ... | 5 |
diff --git a/sling/core/commons/src/main/java/com/composum/sling/clientlibs/handle/FileHandle.java b/sling/core/commons/src/main/java/com/composum/sling/clientlibs/handle/FileHandle.java @@ -122,7 +122,7 @@ public class FileHandle {
return size;
}
- public InputStream getStream() throws RepositoryException {
+ public I... | 6 |
diff --git a/changelog/60_UNRELEASED_2020-xx-xx.md b/changelog/60_UNRELEASED_2020-xx-xx.md -> !!! The major version bump is due to a breaking API change, please see below if you use the API
+> !!! The major version bump is due to breaking API changes, please see below if you use the API
### New feature: Link product of... | 0 |
diff --git a/README.md b/README.md ### Jake -- the JavaScript build tool for Node.js
-[](https://travis-ci.org/elonmitchell/jake)
+[](https://travis-ci.org/... | 13 |
diff --git a/includes/Modules/Site_Verification.php b/includes/Modules/Site_Verification.php @@ -145,7 +145,7 @@ final class Site_Verification extends Module implements Module_With_Scopes {
case 'verification':
return $this->get_siteverification_service()->webResource->listWebResource();
case 'verification-token':
- $e... | 14 |
diff --git a/src/drawNode.js b/src/drawNode.js @@ -121,9 +121,20 @@ function _updateNode(node, x, y, width, height, shape, nodeId, attributes, optio
.attr("id", id);
title.text(nodeId);
+ if (svgElements.size() != 0) {
var bbox = svgElements.node().getBBox();
bbox.cx = bbox.x + bbox.width / 2;
bbox.cy = bbox.y + bbox.h... | 9 |
diff --git a/services/test/services/errortelemetry.hooks.test.js b/services/test/services/errortelemetry.hooks.test.js -const assert = require('assert');
const errors = require('@feathersjs/errors');
const checkLogFormat = require('../../src/services/errorTelemetry/errorTelemetry.hooks').checkLogFormat;
describe('Error... | 3 |
diff --git a/angular/projects/spark-angular/src/lib/components/sprk-masthead/sprk-masthead-accordion/sprk-masthead-accordion.module.ts b/angular/projects/spark-angular/src/lib/components/sprk-masthead/sprk-masthead-accordion/sprk-masthead-accordion.module.ts @@ -2,7 +2,9 @@ import { CommonModule } from '@angular/common... | 3 |
diff --git a/app/views/admin/organization_users/_form.html.erb b/app/views/admin/organization_users/_form.html.erb </div>
<div class="FormAccount-rowData">
<div class="Toggler">
- <%= f.check_box :mfa, id: "mfa", value: "1", checked: mfa_enabled %>
+ <%= f.check_box :mfa, id: "mfa", checked: mfa_enabled %>
<%= label_ta... | 2 |
diff --git a/src/service-broker.js b/src/service-broker.js @@ -996,7 +996,7 @@ class ServiceBroker {
endpoint.failure(err);
}
- if (err instanceof E.RequestTimeoutError) {
+ if (err.retryable) {
// Retry request
if (ctx.retryCount-- > 0) {
this.logger.warn(`Action '${actionName}' timed out on '${nodeID}'!`);
| 9 |
diff --git a/packages/build/tests/plugins/run/fixtures/ci/plugin.js b/packages/build/tests/plugins/run/fixtures/ci/plugin.js @@ -2,8 +2,10 @@ module.exports = {
name: 'netlify-plugin-test',
init() {
console.log('a'.repeat(1e3))
+ console.error('b'.repeat(1e3))
},
build() {
- console.log('b'.repeat(1e3))
+ console.log('... | 7 |
diff --git a/sirepo/package_data/static/js/landing-page.js b/sirepo/package_data/static/js/landing-page.js @@ -504,10 +504,9 @@ app.directive('modeSelector', function(utilities) {
link: function($scope) {
},
controller: function($scope, $element) {
- $scope.currentMode = $scope.modeMap.find(function(mode) {
+ $scope.cu... | 14 |
diff --git a/.github/workflows/workflow-validation.yml b/.github/workflows/workflow-validation.yml @@ -4,10 +4,6 @@ on:
pull_request:
paths:
- '.github/**.yml'
- types:
- - opened
- - reopened
- - synchronize
concurrency:
group: workflow-validation-${{ github.ref }}
| 2 |
diff --git a/package/ParamPoly.js b/package/ParamPoly.js @@ -6,6 +6,7 @@ function ParamPoly(urlvar){
});
return vars;
}
+ let urlvar = "passed"
// when document ready
// get url variable
@@ -14,6 +15,9 @@ function ParamPoly(urlvar){
Store.prototype.findMarkTypes_raw = Store.prototype.findMarkTypes
Store.prototype.findM... | 9 |
diff --git a/webdriver-ts/src/common.ts b/webdriver-ts/src/common.ts @@ -183,7 +183,7 @@ export async function loadFrameworkVersionInformation(matchPredicate: IMatchPred
let directories = fs.readdirSync(path.resolve(frameworksPath, keyedType));
for (let directory of directories) {
- let pathInFrameworksDir = path.join(... | 4 |
diff --git a/content/api/plugins/configuration-api.md b/content/api/plugins/configuration-api.md @@ -121,13 +121,7 @@ in the **Settings** tab of the Test Runner.
### Switch between multiple configuration files
-<Alert type="warning">
-
-This section is only applicatble to the legacy `cypress.json` configuration.
-Learn... | 14 |
diff --git a/docs/markdown/reference/validation/README.md b/docs/markdown/reference/validation/README.md @@ -162,7 +162,7 @@ Same example as above just modified for vee-validate:
// form submit logic
},
validateState(ref) {
- if (this.veeFields[ref] && this.veeFields[ref].dirty) {
+ if (this.veeFields[ref] && (this.vee... | 9 |
diff --git a/assets/js/modules/subscribe-with-google/components/settings/SettingsForm.js b/assets/js/modules/subscribe-with-google/components/settings/SettingsForm.js @@ -37,7 +37,7 @@ export default function SettingsForm() {
<PublicationIDInput />
</div>
- <div className="googlesitekit-setup-module__inputs googlesitek... | 2 |
diff --git a/README.md b/README.md @@ -30,32 +30,32 @@ Latest version which is compatible to Struts 2.3.x is version [3.7.1].
<dependency>
<groupId>com.jgeppert.struts2.jquery</groupId>
<artifactId>struts2-jquery-plugin</artifactId>
- <version>4.0.1</version>
+ <version>4.0.2</version>
</dependency>
<dependency>
<group... | 12 |
diff --git a/index.d.ts b/index.d.ts @@ -313,6 +313,8 @@ declare namespace R {
defaultTo<T, U>(a: T, b: U): T | U
defaultTo<T>(a: T): <U>(b: U) => T | U
+ debug(...input: any[]): void
+
divide(a: number, b: number): number
divide(a: number): (b: number) => number
| 0 |
diff --git a/src/utils/gaa.js b/src/utils/gaa.js @@ -970,10 +970,8 @@ export class GaaSignInWithGoogleButton {
'theme': 'outline',
'text': 'continue_with',
'logo_alignment': 'center',
- 'width': self.document.getElementById(SIGN_IN_WITH_GOOGLE_BUTTON_ID)
- .offsetWidth,
- 'height': self.document.getElementById(SIGN_IN_... | 10 |
diff --git a/config/environments/production.rb b/config/environments/production.rb @@ -80,13 +80,17 @@ Hackweek::Application.configure do
# Use lograge to show the logs in one line
config.lograge.enabled = true
+ config.lograge.custom_payload do |controller|
+ {
+ user: controller.current_user.try(:name)
+ }
+ end
conf... | 1 |
diff --git a/articles/quickstart/spa/_includes/_getting_started.md b/articles/quickstart/spa/_includes/_getting_started.md This guide walks you through setting up authentication and authorization in your ${library} apps with Auth0.
+If you are new to Auth0 please check our [Auth0 Overview](https://auth0.com/docs/overvi... | 0 |
diff --git a/apps/timecal/timecal.app.js b/apps/timecal/timecal.app.js @@ -67,10 +67,10 @@ class TimeCalClock{
/*
* Run forest run
**/
- draw(){
+ draw(force){
this.drawTime();
- if (this.TZOffset===undefined || this.TZOffset!==d.getTimezoneOffset())
+ if (force || this.TZOffset===undefined || this.TZOffset!==d.getTime... | 11 |
diff --git a/src/main.js b/src/main.js @@ -41,6 +41,11 @@ const exportedUtils = Object.assign(publicUtils, {
* accessible from the left sidebar. To learn how Apify SDK works, we suggest following
* the [Getting Started](/docs/guides/getting-started) tutorial.
*
+ * **Important:**
+ * > The following functions: `addWebh... | 7 |
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml @@ -41,6 +41,12 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
+ if: github.event_name != 'pull_request_target'
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ ref: ${{ env.GITHUB_HEAD_REF }}
+ if: github.event_name == 'pull_requ... | 4 |
diff --git a/modules/plugins/validator.js b/modules/plugins/validator.js @@ -4,6 +4,7 @@ import { RULE_TYPE, KEYFRAME_TYPE } from '../utils/styleTypes'
import isObject from '../utils/isObject'
import isNestedSelector from '../utils/isNestedSelector'
+import isMediaQuery from '../utils/isMediaQuery'
const percentageRege... | 1 |
diff --git a/item-spec/item-spec.md b/item-spec/item-spec.md @@ -34,7 +34,7 @@ inherited from GeoJSON.
| id | string | **REQUIRED.** Provider identifier. As most geospatial assets are already defined by some identification scheme by the data provider it is recommended to simply use that ID. Data providers are advised t... | 3 |
diff --git a/app/components/build/EmailPrompt.js b/app/components/build/EmailPrompt.js @@ -88,15 +88,17 @@ class EmailPrompt extends React.Component {
};
render() {
- const { email = "error@example.ca" } = this.props.build.createdBy;
+ const { email } = this.props.build.createdBy;
const notice = this.props.viewer.notic... | 4 |
diff --git a/includes/Modules/Search_Console.php b/includes/Modules/Search_Console.php @@ -478,18 +478,7 @@ final class Search_Console extends Module implements Module_With_Screen, Module_
case 'page-analytics':
case 'search-keywords':
case 'index-status':
- $response_data = $response->getRows();
- usort(
- $response_d... | 2 |
diff --git a/src/components/MTableHeader/index.js b/src/components/MTableHeader/index.js @@ -142,7 +142,7 @@ export function MTableHeader(props) {
onClick={() => {
const orderDirection =
columnDef.tableData.id !== props.orderBy
- ? 'asc'
+ ? props.orderDirection || 'asc' // use the current sort order when switching col... | 4 |
diff --git a/Apps/Sandcastle/gallery/Custom Shaders 3D Tiles.html b/Apps/Sandcastle/gallery/Custom Shaders 3D Tiles.html }),
});
viewer.scene.primitives.add(tileset);
- viewer.zoomTo(tileset);
+ const initialPosition = Cesium.Cartesian3.fromDegrees(
+ -74.01881302800248,
+ 40.69114333714821,
+ 753
+ );
+ const initialO... | 7 |
diff --git a/docs/json/animation.json b/docs/json/animation.json "ddd": {
"title": "3-D",
"description": "Composition has 3-D layers",
- "enum": [0, 1],
- "type": "number"
+ "type": "number",
+ "oneOf": [
+ {
+ "$ref": "#/helpers/boolean"
+ }
+ ],
+ "default": 0
},
"h": {
"title": "Height",
| 12 |
diff --git a/components/Select.jsx b/components/Select.jsx import styles from 'styles/Select.module.css'
import { useTranslate } from 'hooks/useTranslate'
+import { useLocale } from 'hooks/useLocale'
-export default function Select ({ data, onChange }) {
- const translate = useTranslate()
- const normalizedDate = (date... | 7 |
diff --git a/assets/js/components/settings/SettingsActiveModule/Header.test.js b/assets/js/components/settings/SettingsActiveModule/Header.test.js @@ -37,8 +37,6 @@ import {
provideModules,
fireEvent,
} from '../../../../../tests/js/test-utils';
-import { MODULES_ANALYTICS } from '../../../modules/analytics/datastore/c... | 2 |
diff --git a/src/screens/editor/children/styles.ts b/src/screens/editor/children/styles.ts @@ -40,7 +40,7 @@ export default EStyleSheet.create({
inputWrapper: { flexDirection: 'row', alignItems: 'center' },
contentLabel: { color: '$iconColor', marginTop:4, textAlign:'left' },
weightInput: {width:80},
- weightFormInput:... | 7 |
diff --git a/app/views/turkerIdExists.scala.html b/app/views/turkerIdExists.scala.html <p>
The reason is that you have already created an account on our website using your
worker id. If you'd like to work on this HIT, please contact us at
- <a href="mailto:sidewalk@@umiacs.umd.edu">sidewalk@@umiacs.umd.edu</a>. Alterna... | 3 |
diff --git a/src/components/date/date.component.js b/src/components/date/date.component.js @@ -67,12 +67,7 @@ const Date = Input(InputIcon(InputLabel(InputValidation(class Date extends React
/**
* The current date
*/
- value: PropTypes.string,
-
- /*
- * The today date
- */
- todayButton: PropTypes.string
+ value: Prop... | 13 |
diff --git a/tests/phpunit/integration/Core/Util/Migration_n_e_x_tTest.php b/tests/phpunit/integration/Core/Util/Migration_n_e_x_tTest.php @@ -17,6 +17,8 @@ use Google\Site_Kit\Core\Util\Migration_n_e_x_t;
use Google\Site_Kit\Core\Util\Tracking;
use Google\Site_Kit\Tests\TestCase;
+// phpcs:disable PEAR.NamingConventio... | 8 |
diff --git a/src/components/TextInputWithFocusStyles.js b/src/components/TextInputWithFocusStyles.js @@ -36,7 +36,7 @@ class TextInputWithFocusStyles extends React.Component {
super(props);
this.state = {
- style: this.props.styleFocusOut,
+ isFocused: false,
};
}
@@ -48,15 +48,19 @@ class TextInputWithFocusStyles exte... | 4 |
diff --git a/buildout.cfg b/buildout.cfg @@ -119,7 +119,7 @@ recipe = collective.recipe.cmd
on_install = true
on_update = true
cmds =
- curl -o ontology.json https://s3-us-west-1.amazonaws.com/encoded-build/ontology/ontology-2017-02-04.json
+ curl -o ontology.json https://s3-us-west-1.amazonaws.com/encoded-build/ontolo... | 3 |
diff --git a/src/structs/ArticleMessage.js b/src/structs/ArticleMessage.js @@ -31,6 +31,11 @@ class ArticleMessage {
}
}
+ getChannel () {
+ const channel = this.bot.channels.cache.get(this.feed.channel)
+ return channel
+ }
+
determineFormat () {
const { feed, parsedArticle, filteredFormats } = this
let text = feed.te... | 4 |
diff --git a/metaverse_modules/barrier/index.js b/metaverse_modules/barrier/index.js @@ -110,6 +110,8 @@ export default () => {
// const {CapsuleGeometry} = useGeometries();
const {WebaverseShaderMaterial} = useMaterials();
+ app.name = 'barrier';
+
const _getSingleUse = () => app.getComponent('singleUse') ?? false;
co... | 0 |
diff --git a/src/admin/__tests__/describeGroups.spec.js b/src/admin/__tests__/describeGroups.spec.js @@ -13,7 +13,7 @@ const {
} = require('testHelpers')
describe('Admin', () => {
- let admin, topicName, groupIds, cluster, consumers, producer
+ let admin, topicName, groupIds, consumers, producer
beforeAll(async () => {... | 7 |
diff --git a/src/components/Message/Message.Bubble.tsx b/src/components/Message/Message.Bubble.tsx @@ -4,7 +4,7 @@ import { noop } from '../../utilities/other'
import { isNativeSpanType } from '@helpscout/react-utils/dist/isType'
import compose from '@helpscout/react-utils/dist/compose'
import Heading from '../Heading'... | 14 |
diff --git a/src/configureStore.js b/src/configureStore.js @@ -15,11 +15,15 @@ function configureStoreProd(initialState = {}, history) {
const enhancers = [applyMiddleware(...middlewares)];
- return createStore(
+ const store = createStore(
createReducer(),
initialState,
compose(...enhancers),
);
+
+ store.asyncReducer... | 1 |
diff --git a/test/jasmine/tests/gl2d_click_test.js b/test/jasmine/tests/gl2d_click_test.js @@ -738,4 +738,61 @@ describe('@noCI @gl Test gl2d lasso/select:', function() {
.catch(failTest)
.then(done);
});
+
+ it('should work on gl text charts', function(done) {
+ var fig = Lib.extendDeep({}, require('@mocks/gl2d_text_c... | 0 |
diff --git a/OurUmbraco.Site/web.vsts.config b/OurUmbraco.Site/web.vsts.config <match url="documentation/products/*" />
<action type="Redirect" url="/documentation/Add-ons/{R:1}" redirectType="Permanent" appendQueryString="true" />
</rule>
- <!-- Redirect v9+ configuration articles to the new platform -->
- <rule name=... | 2 |
diff --git a/framer/TextLayer.coffee b/framer/TextLayer.coffee @@ -196,6 +196,7 @@ class exports.TextLayer extends Layer
@define "textOverflow",
get: -> @_styledText.textOverflow
set: (value) ->
+ @clip = _.isString(value)
@_styledText.setTextOverflow(value)
@renderText()
| 12 |
diff --git a/renderer/components/nettests/circumvention/Psiphon.js b/renderer/components/nettests/circumvention/Psiphon.js @@ -18,7 +18,7 @@ const Psiphon = ({measurement, isAnomaly, render}) => {
const PsiphonDetails = () => (
<Box width={1}>
- <Flex my={4} justifyContent='center'>
+ <Flex my={4}>
<Text>
{isAnomaly ? ... | 2 |
diff --git a/Specs/Scene/Cesium3DTileBatchTableSpec.js b/Specs/Scene/Cesium3DTileBatchTableSpec.js @@ -123,19 +123,6 @@ describe(
expect(batchTable.getShow(0)).toEqual(false);
});
- it("setColor throws with invalid batchId", function () {
- var batchTable = new Cesium3DTileBatchTable(mockTileset, 1);
- expect(function ... | 3 |
diff --git a/assets/js/googlesitekit/modules/datastore/modules.js b/assets/js/googlesitekit/modules/datastore/modules.js @@ -417,7 +417,7 @@ const baseActions = {
* Stores recoverable modules in the datastore.
*
* Because this is frequently-accessed data, this is usually sourced
- * from a global variable (`_googlesite... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.